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": "9faaf409-1c14-4777-88d5-e5c2dbf35e2b",
"ClubId": "193ec538-13c1-4f10-8489-26001beff9e9",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "ca95181f-c30b-4bd8-ad54-14c81893aea8",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"c167173b-3fee-4d4b-ac34-874d19f78835",
"13981905-9ba1-4a80-b182-1bd8fdc65218"
],
"AccountState": 7,
"LastPasswordChangeOn": "2026-01-07T03:31:22.6625487+01:00",
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"LanguageId": 10,
"Id": "9faaf409-1c14-4777-88d5-e5c2dbf35e2b",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"9faaf409-1c14-4777-88d5-e5c2dbf35e2b","ClubId":"193ec538-13c1-4f10-8489-26001beff9e9","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"ca95181f-c30b-4bd8-ad54-14c81893aea8","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["c167173b-3fee-4d4b-ac34-874d19f78835","13981905-9ba1-4a80-b182-1bd8fdc65218"],"AccountState":7,"LastPasswordChangeOn":"2026-01-07T03:31:22.6625487+01:00","ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"LanguageId":10,"Id":"9faaf409-1c14-4777-88d5-e5c2dbf35e2b","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">9faaf409-1c14-4777-88d5-e5c2dbf35e2b</Id>
<AccountState>7</AccountState>
<ClubId>193ec538-13c1-4f10-8489-26001beff9e9</ClubId>
<EmailConfirmed>true</EmailConfirmed>
<ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon>
<FriendlyName>sample string 3</FriendlyName>
<LanguageId>10</LanguageId>
<LastPasswordChangeOn>2026-01-07T03:31:22.6625487+01:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>ca95181f-c30b-4bd8-ad54-14c81893aea8</PersonId>
<Remarks>sample string 5</Remarks>
<UserId>9faaf409-1c14-4777-88d5-e5c2dbf35e2b</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>c167173b-3fee-4d4b-ac34-874d19f78835</d2p1:guid>
<d2p1:guid>13981905-9ba1-4a80-b182-1bd8fdc65218</d2p1:guid>
</UserRoleIds>
</UserDetails>