GET api/v1/users/my
Request Information
URI Parameters
None.
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": "814ee78e-08a9-408d-b804-6693efd9b9a4",
"ClubId": "831646bb-50a2-460d-bdbd-72aca3261727",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "44ab763d-bfae-400a-858d-5e5382b6d4d2",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"18e29071-4357-43b6-ba31-a099860ab554",
"ed36da95-58b9-45b6-bff4-5cc42ce6d2e6"
],
"AccountState": 7,
"LastPasswordChangeOn": "2026-09-07T01:29:15.898723+02:00",
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"LanguageId": 10,
"Id": "814ee78e-08a9-408d-b804-6693efd9b9a4",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"814ee78e-08a9-408d-b804-6693efd9b9a4","ClubId":"831646bb-50a2-460d-bdbd-72aca3261727","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"44ab763d-bfae-400a-858d-5e5382b6d4d2","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["18e29071-4357-43b6-ba31-a099860ab554","ed36da95-58b9-45b6-bff4-5cc42ce6d2e6"],"AccountState":7,"LastPasswordChangeOn":"2026-09-07T01:29:15.898723+02:00","ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"LanguageId":10,"Id":"814ee78e-08a9-408d-b804-6693efd9b9a4","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">814ee78e-08a9-408d-b804-6693efd9b9a4</Id>
<AccountState>7</AccountState>
<ClubId>831646bb-50a2-460d-bdbd-72aca3261727</ClubId>
<EmailConfirmed>true</EmailConfirmed>
<ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon>
<FriendlyName>sample string 3</FriendlyName>
<LanguageId>10</LanguageId>
<LastPasswordChangeOn>2026-09-07T01:29:15.898723+02:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>44ab763d-bfae-400a-858d-5e5382b6d4d2</PersonId>
<Remarks>sample string 5</Remarks>
<UserId>814ee78e-08a9-408d-b804-6693efd9b9a4</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>18e29071-4357-43b6-ba31-a099860ab554</d2p1:guid>
<d2p1:guid>ed36da95-58b9-45b6-bff4-5cc42ce6d2e6</d2p1:guid>
</UserRoleIds>
</UserDetails>