GET api/v1/users/name/{username}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| username | string |
Required |
Body Parameters
None.
Response Information
Resource Description
UserDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
|
| ClubId | globally unique identifier |
Required |
|
| FriendlyName | string |
Required String length: inclusive between 0 and 100 |
|
| NotificationEmail | string |
Required String length: inclusive between 0 and 256 |
|
| PersonId | globally unique identifier |
None. |
|
| Remarks | string |
None. |
|
| UserName | string |
Required String length: inclusive between 0 and 256 |
|
| UserRoleIds | Collection of globally unique identifier |
None. |
|
| AccountState | integer |
None. |
|
| LastPasswordChangeOn | date |
None. |
|
| ForcePasswordChangeNextLogon | boolean |
None. |
|
| EmailConfirmed | boolean |
None. |
|
| LanguageId | integer |
None. |
|
| Id | globally unique identifier |
None. |
|
| CanUpdateRecord | boolean |
None. |
|
| CanDeleteRecord | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserId": "38c66e40-51e9-43b5-a408-0ac34dd2dfb5",
"ClubId": "c9572fca-d22f-42fe-be73-c366398a2163",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "5d15162e-44bc-41d7-a1c4-45aa48bd65f4",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"8176d125-226e-4247-94f5-e23008abccf4",
"cfe4383f-8728-490a-a91e-e224c17d2fcc"
],
"AccountState": 7,
"LastPasswordChangeOn": "2026-05-16T18:18:53.2163983+02:00",
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"LanguageId": 10,
"Id": "38c66e40-51e9-43b5-a408-0ac34dd2dfb5",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"38c66e40-51e9-43b5-a408-0ac34dd2dfb5","ClubId":"c9572fca-d22f-42fe-be73-c366398a2163","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"5d15162e-44bc-41d7-a1c4-45aa48bd65f4","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["8176d125-226e-4247-94f5-e23008abccf4","cfe4383f-8728-490a-a91e-e224c17d2fcc"],"AccountState":7,"LastPasswordChangeOn":"2026-05-16T18:18:53.2163983+02:00","ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"LanguageId":10,"Id":"38c66e40-51e9-43b5-a408-0ac34dd2dfb5","CanUpdateRecord":true,"CanDeleteRecord":true}
application/xml, text/xml
Sample:
<UserDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.User">
<CanDeleteRecord xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">true</CanDeleteRecord>
<CanUpdateRecord xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">true</CanUpdateRecord>
<Id xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">38c66e40-51e9-43b5-a408-0ac34dd2dfb5</Id>
<AccountState>7</AccountState>
<ClubId>c9572fca-d22f-42fe-be73-c366398a2163</ClubId>
<EmailConfirmed>true</EmailConfirmed>
<ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon>
<FriendlyName>sample string 3</FriendlyName>
<LanguageId>10</LanguageId>
<LastPasswordChangeOn>2026-05-16T18:18:53.2163983+02:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>5d15162e-44bc-41d7-a1c4-45aa48bd65f4</PersonId>
<Remarks>sample string 5</Remarks>
<UserId>38c66e40-51e9-43b5-a408-0ac34dd2dfb5</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>8176d125-226e-4247-94f5-e23008abccf4</d2p1:guid>
<d2p1:guid>cfe4383f-8728-490a-a91e-e224c17d2fcc</d2p1:guid>
</UserRoleIds>
</UserDetails>