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": "c61d7549-07db-4e6e-977b-ff7926d4bc1f",
"ClubId": "0e6be113-9754-477d-b0fd-d8da860a78c6",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "9d5052a5-cdd5-4f08-9f7d-2ca38d7b12a2",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"214f0c1c-6123-471a-b942-83bfa91354b4",
"b8b6fc13-28f9-4205-857d-63a444ff2529"
],
"AccountState": 7,
"LastPasswordChangeOn": "2026-07-04T15:21:37.81042+02:00",
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"LanguageId": 10,
"Id": "c61d7549-07db-4e6e-977b-ff7926d4bc1f",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"c61d7549-07db-4e6e-977b-ff7926d4bc1f","ClubId":"0e6be113-9754-477d-b0fd-d8da860a78c6","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"9d5052a5-cdd5-4f08-9f7d-2ca38d7b12a2","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["214f0c1c-6123-471a-b942-83bfa91354b4","b8b6fc13-28f9-4205-857d-63a444ff2529"],"AccountState":7,"LastPasswordChangeOn":"2026-07-04T15:21:37.81042+02:00","ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"LanguageId":10,"Id":"c61d7549-07db-4e6e-977b-ff7926d4bc1f","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">c61d7549-07db-4e6e-977b-ff7926d4bc1f</Id>
<AccountState>7</AccountState>
<ClubId>0e6be113-9754-477d-b0fd-d8da860a78c6</ClubId>
<EmailConfirmed>true</EmailConfirmed>
<ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon>
<FriendlyName>sample string 3</FriendlyName>
<LanguageId>10</LanguageId>
<LastPasswordChangeOn>2026-07-04T15:21:37.81042+02:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>9d5052a5-cdd5-4f08-9f7d-2ca38d7b12a2</PersonId>
<Remarks>sample string 5</Remarks>
<UserId>c61d7549-07db-4e6e-977b-ff7926d4bc1f</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>214f0c1c-6123-471a-b942-83bfa91354b4</d2p1:guid>
<d2p1:guid>b8b6fc13-28f9-4205-857d-63a444ff2529</d2p1:guid>
</UserRoleIds>
</UserDetails>