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": "71f967ca-013e-4b80-85d6-77f8427994ef",
"ClubId": "439aa11b-4a8b-4a84-801a-a62df971da8b",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "4b41b7ab-3a41-4176-bc5b-12dbfcd248f1",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"05083b97-c9ad-405b-9600-965dcd42de5b",
"ea4a3dd7-81fe-4a0f-8cb9-4e73020b8f8d"
],
"AccountState": 7,
"LastPasswordChangeOn": "2026-08-10T20:19:08.3234529+02:00",
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"LanguageId": 10,
"Id": "71f967ca-013e-4b80-85d6-77f8427994ef",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"71f967ca-013e-4b80-85d6-77f8427994ef","ClubId":"439aa11b-4a8b-4a84-801a-a62df971da8b","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"4b41b7ab-3a41-4176-bc5b-12dbfcd248f1","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["05083b97-c9ad-405b-9600-965dcd42de5b","ea4a3dd7-81fe-4a0f-8cb9-4e73020b8f8d"],"AccountState":7,"LastPasswordChangeOn":"2026-08-10T20:19:08.3234529+02:00","ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"LanguageId":10,"Id":"71f967ca-013e-4b80-85d6-77f8427994ef","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">71f967ca-013e-4b80-85d6-77f8427994ef</Id>
<AccountState>7</AccountState>
<ClubId>439aa11b-4a8b-4a84-801a-a62df971da8b</ClubId>
<EmailConfirmed>true</EmailConfirmed>
<ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon>
<FriendlyName>sample string 3</FriendlyName>
<LanguageId>10</LanguageId>
<LastPasswordChangeOn>2026-08-10T20:19:08.3234529+02:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>4b41b7ab-3a41-4176-bc5b-12dbfcd248f1</PersonId>
<Remarks>sample string 5</Remarks>
<UserId>71f967ca-013e-4b80-85d6-77f8427994ef</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>05083b97-c9ad-405b-9600-965dcd42de5b</d2p1:guid>
<d2p1:guid>ea4a3dd7-81fe-4a0f-8cb9-4e73020b8f8d</d2p1:guid>
</UserRoleIds>
</UserDetails>