GET api/v1/users/{userId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | globally unique identifier |
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": "7dd5f9c1-be33-466f-850d-1f1e4458ae84",
"ClubId": "e3fa8806-03bd-441f-a7dd-d37dc9947c35",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "610c9adf-4026-4cb5-be79-6e18b3a83ac1",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"199d4162-1e05-4aa5-bf92-b4439cbfecf1",
"78e4a9ed-6b20-411c-930f-fd904cbfc281"
],
"AccountState": 7,
"LastPasswordChangeOn": "2026-03-26T02:48:36.051602+01:00",
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"LanguageId": 10,
"Id": "7dd5f9c1-be33-466f-850d-1f1e4458ae84",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"7dd5f9c1-be33-466f-850d-1f1e4458ae84","ClubId":"e3fa8806-03bd-441f-a7dd-d37dc9947c35","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"610c9adf-4026-4cb5-be79-6e18b3a83ac1","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["199d4162-1e05-4aa5-bf92-b4439cbfecf1","78e4a9ed-6b20-411c-930f-fd904cbfc281"],"AccountState":7,"LastPasswordChangeOn":"2026-03-26T02:48:36.051602+01:00","ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"LanguageId":10,"Id":"7dd5f9c1-be33-466f-850d-1f1e4458ae84","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">7dd5f9c1-be33-466f-850d-1f1e4458ae84</Id>
<AccountState>7</AccountState>
<ClubId>e3fa8806-03bd-441f-a7dd-d37dc9947c35</ClubId>
<EmailConfirmed>true</EmailConfirmed>
<ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon>
<FriendlyName>sample string 3</FriendlyName>
<LanguageId>10</LanguageId>
<LastPasswordChangeOn>2026-03-26T02:48:36.051602+01:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>610c9adf-4026-4cb5-be79-6e18b3a83ac1</PersonId>
<Remarks>sample string 5</Remarks>
<UserId>7dd5f9c1-be33-466f-850d-1f1e4458ae84</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>199d4162-1e05-4aa5-bf92-b4439cbfecf1</d2p1:guid>
<d2p1:guid>78e4a9ed-6b20-411c-930f-fd904cbfc281</d2p1:guid>
</UserRoleIds>
</UserDetails>