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": "a6682089-c938-4f04-b188-da996e1e696c",
"ClubId": "66a16be2-3880-48c4-944d-fca565aa1bbd",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "efe731d2-636a-4275-8746-4cc1b0d630af",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"1718357d-9d20-4c46-9155-125a8fe29741",
"5530c656-2ab8-403c-a469-9a196b42ce72"
],
"AccountState": 7,
"LastPasswordChangeOn": "2026-08-04T18:39:10.3861298+02:00",
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"LanguageId": 10,
"Id": "a6682089-c938-4f04-b188-da996e1e696c",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"a6682089-c938-4f04-b188-da996e1e696c","ClubId":"66a16be2-3880-48c4-944d-fca565aa1bbd","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"efe731d2-636a-4275-8746-4cc1b0d630af","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["1718357d-9d20-4c46-9155-125a8fe29741","5530c656-2ab8-403c-a469-9a196b42ce72"],"AccountState":7,"LastPasswordChangeOn":"2026-08-04T18:39:10.3861298+02:00","ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"LanguageId":10,"Id":"a6682089-c938-4f04-b188-da996e1e696c","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">a6682089-c938-4f04-b188-da996e1e696c</Id>
<AccountState>7</AccountState>
<ClubId>66a16be2-3880-48c4-944d-fca565aa1bbd</ClubId>
<EmailConfirmed>true</EmailConfirmed>
<ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon>
<FriendlyName>sample string 3</FriendlyName>
<LanguageId>10</LanguageId>
<LastPasswordChangeOn>2026-08-04T18:39:10.3861298+02:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>efe731d2-636a-4275-8746-4cc1b0d630af</PersonId>
<Remarks>sample string 5</Remarks>
<UserId>a6682089-c938-4f04-b188-da996e1e696c</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>1718357d-9d20-4c46-9155-125a8fe29741</d2p1:guid>
<d2p1:guid>5530c656-2ab8-403c-a469-9a196b42ce72</d2p1:guid>
</UserRoleIds>
</UserDetails>