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": "d3476e1e-5e08-458d-90b5-14dcb4d8e42b",
"ClubId": "8af7b2df-80e2-4fd7-822d-6c77322155e2",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "2b43e2cd-32ee-458f-a699-935cbc9b0e31",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"acbca8d8-a18f-42d1-b516-0d15dbe45ab7",
"5a0e39f6-0c33-48bc-8b84-47066fd61c27"
],
"AccountState": 7,
"LastPasswordChangeOn": "2026-07-24T17:11:46.6432013+02:00",
"ShowAllFlightFieldsInMobile": true,
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"ShowFlightsFrom": 1,
"FlightChangePeriod": 1,
"Id": "d3476e1e-5e08-458d-90b5-14dcb4d8e42b",
"Language": {
"LanguageId": 1,
"LanguageKey": "sample string 2"
},
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"d3476e1e-5e08-458d-90b5-14dcb4d8e42b","ClubId":"8af7b2df-80e2-4fd7-822d-6c77322155e2","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"2b43e2cd-32ee-458f-a699-935cbc9b0e31","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["acbca8d8-a18f-42d1-b516-0d15dbe45ab7","5a0e39f6-0c33-48bc-8b84-47066fd61c27"],"AccountState":7,"LastPasswordChangeOn":"2026-07-24T17:11:46.6432013+02:00","ShowAllFlightFieldsInMobile":true,"ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"ShowFlightsFrom":1,"FlightChangePeriod":1,"Id":"d3476e1e-5e08-458d-90b5-14dcb4d8e42b","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">d3476e1e-5e08-458d-90b5-14dcb4d8e42b</Id>
<AccountState>7</AccountState>
<ClubId>8af7b2df-80e2-4fd7-822d-6c77322155e2</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>2026-07-24T17:11:46.6432013+02:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>2b43e2cd-32ee-458f-a699-935cbc9b0e31</PersonId>
<Remarks>sample string 5</Remarks>
<ShowAllFlightFieldsInMobile>true</ShowAllFlightFieldsInMobile>
<ShowFlightsFrom>1</ShowFlightsFrom>
<UserId>d3476e1e-5e08-458d-90b5-14dcb4d8e42b</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>acbca8d8-a18f-42d1-b516-0d15dbe45ab7</d2p1:guid>
<d2p1:guid>5a0e39f6-0c33-48bc-8b84-47066fd61c27</d2p1:guid>
</UserRoleIds>
</UserDetails>