GET api/v1/users/my
Gets my user details.
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. |
|
| ShowAllFlightFieldsInMobile | boolean |
None. |
|
| ForcePasswordChangeNextLogon | boolean |
None. |
|
| EmailConfirmed | boolean |
None. |
|
| ShowFlightsFrom | integer |
None. |
|
| FlightChangePeriod | integer |
None. |
|
| Id | globally unique identifier |
None. |
|
| Language | LanguageOverview |
None. |
|
| CanUpdateRecord | boolean |
None. |
|
| CanDeleteRecord | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserId": "b8c06a3a-4ca2-4a0e-9b00-68d2d3146799",
"ClubId": "e3e88cf8-32b0-407c-9349-819780a79d33",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "2ad54eec-b34e-4abc-b2cd-7a666695df1e",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"dfad65c6-afd5-496a-ac4c-db7165935c16",
"2f8116b7-f57a-4cb7-9362-e7f485076a0f"
],
"AccountState": 7,
"LastPasswordChangeOn": "2025-10-26T13:09:11.2157448+01:00",
"ShowAllFlightFieldsInMobile": true,
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"ShowFlightsFrom": 1,
"FlightChangePeriod": 1,
"Id": "b8c06a3a-4ca2-4a0e-9b00-68d2d3146799",
"Language": {
"LanguageId": 1,
"LanguageKey": "sample string 2"
},
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"b8c06a3a-4ca2-4a0e-9b00-68d2d3146799","ClubId":"e3e88cf8-32b0-407c-9349-819780a79d33","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"2ad54eec-b34e-4abc-b2cd-7a666695df1e","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["dfad65c6-afd5-496a-ac4c-db7165935c16","2f8116b7-f57a-4cb7-9362-e7f485076a0f"],"AccountState":7,"LastPasswordChangeOn":"2025-10-26T13:09:11.2157448+01:00","ShowAllFlightFieldsInMobile":true,"ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"ShowFlightsFrom":1,"FlightChangePeriod":1,"Id":"b8c06a3a-4ca2-4a0e-9b00-68d2d3146799","Language":{"LanguageId":1,"LanguageKey":"sample string 2"},"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">b8c06a3a-4ca2-4a0e-9b00-68d2d3146799</Id>
<AccountState>7</AccountState>
<ClubId>e3e88cf8-32b0-407c-9349-819780a79d33</ClubId>
<EmailConfirmed>true</EmailConfirmed>
<FlightChangePeriod>1</FlightChangePeriod>
<ForcePasswordChangeNextLogon>true</ForcePasswordChangeNextLogon>
<FriendlyName>sample string 3</FriendlyName>
<Language>
<LanguageId>1</LanguageId>
<LanguageKey>sample string 2</LanguageKey>
</Language>
<LastPasswordChangeOn>2025-10-26T13:09:11.2157448+01:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>2ad54eec-b34e-4abc-b2cd-7a666695df1e</PersonId>
<Remarks>sample string 5</Remarks>
<ShowAllFlightFieldsInMobile>true</ShowAllFlightFieldsInMobile>
<ShowFlightsFrom>1</ShowFlightsFrom>
<UserId>b8c06a3a-4ca2-4a0e-9b00-68d2d3146799</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>dfad65c6-afd5-496a-ac4c-db7165935c16</d2p1:guid>
<d2p1:guid>2f8116b7-f57a-4cb7-9362-e7f485076a0f</d2p1:guid>
</UserRoleIds>
</UserDetails>