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": "2dabaf97-7659-4f2a-b045-590a24efeef0",
"ClubId": "eaf819d4-4c32-4683-93b4-842f74302f56",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "d61a9879-9e03-42da-9f6e-74392585903c",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"a81079a3-b091-4fa2-85aa-dc4626691f0b",
"42a39612-c1db-478d-872c-9692a623d929"
],
"AccountState": 7,
"LastPasswordChangeOn": "2025-12-10T05:32:15.355658+01:00",
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"LanguageId": 10,
"Id": "2dabaf97-7659-4f2a-b045-590a24efeef0",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"2dabaf97-7659-4f2a-b045-590a24efeef0","ClubId":"eaf819d4-4c32-4683-93b4-842f74302f56","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"d61a9879-9e03-42da-9f6e-74392585903c","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["a81079a3-b091-4fa2-85aa-dc4626691f0b","42a39612-c1db-478d-872c-9692a623d929"],"AccountState":7,"LastPasswordChangeOn":"2025-12-10T05:32:15.355658+01:00","ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"LanguageId":10,"Id":"2dabaf97-7659-4f2a-b045-590a24efeef0","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">2dabaf97-7659-4f2a-b045-590a24efeef0</Id>
<AccountState>7</AccountState>
<ClubId>eaf819d4-4c32-4683-93b4-842f74302f56</ClubId>
<EmailConfirmed>true</EmailConfirmed>
<ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon>
<FriendlyName>sample string 3</FriendlyName>
<LanguageId>10</LanguageId>
<LastPasswordChangeOn>2025-12-10T05:32:15.355658+01:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>d61a9879-9e03-42da-9f6e-74392585903c</PersonId>
<Remarks>sample string 5</Remarks>
<UserId>2dabaf97-7659-4f2a-b045-590a24efeef0</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>a81079a3-b091-4fa2-85aa-dc4626691f0b</d2p1:guid>
<d2p1:guid>42a39612-c1db-478d-872c-9692a623d929</d2p1:guid>
</UserRoleIds>
</UserDetails>