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": "86ad7c61-bc73-4ca7-b49f-f9196bbfa588",
"ClubId": "1ca866aa-1676-4b58-9889-2077ba68e82d",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "cce5047b-19d2-478c-9d8c-9db546d5df8d",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"c1ba899f-2192-4852-bd4b-83d2df62674f",
"77ba23e4-bfb1-4d48-ae14-87faf78d6594"
],
"AccountState": 7,
"LastPasswordChangeOn": "2025-12-31T09:38:47.8413712+01:00",
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"LanguageId": 10,
"Id": "86ad7c61-bc73-4ca7-b49f-f9196bbfa588",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"86ad7c61-bc73-4ca7-b49f-f9196bbfa588","ClubId":"1ca866aa-1676-4b58-9889-2077ba68e82d","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"cce5047b-19d2-478c-9d8c-9db546d5df8d","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["c1ba899f-2192-4852-bd4b-83d2df62674f","77ba23e4-bfb1-4d48-ae14-87faf78d6594"],"AccountState":7,"LastPasswordChangeOn":"2025-12-31T09:38:47.8413712+01:00","ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"LanguageId":10,"Id":"86ad7c61-bc73-4ca7-b49f-f9196bbfa588","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">86ad7c61-bc73-4ca7-b49f-f9196bbfa588</Id>
<AccountState>7</AccountState>
<ClubId>1ca866aa-1676-4b58-9889-2077ba68e82d</ClubId>
<EmailConfirmed>true</EmailConfirmed>
<ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon>
<FriendlyName>sample string 3</FriendlyName>
<LanguageId>10</LanguageId>
<LastPasswordChangeOn>2025-12-31T09:38:47.8413712+01:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>cce5047b-19d2-478c-9d8c-9db546d5df8d</PersonId>
<Remarks>sample string 5</Remarks>
<UserId>86ad7c61-bc73-4ca7-b49f-f9196bbfa588</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>c1ba899f-2192-4852-bd4b-83d2df62674f</d2p1:guid>
<d2p1:guid>77ba23e4-bfb1-4d48-ae14-87faf78d6594</d2p1:guid>
</UserRoleIds>
</UserDetails>