GET api/v1/users/name/{username}
Gets the user details.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| username |
The username. |
string |
Required |
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": "79c7ed9e-f501-4afd-9309-fdb49ba9ae66",
"ClubId": "736f413d-0f77-4410-bf0c-4c6efa4de3cd",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "b75d3890-f931-47a7-98ca-b465719543f1",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"4e0fc5eb-bd47-4010-ae2e-c8a40f845e88",
"5ee7d70a-7f27-40fe-983f-6949831007a2"
],
"AccountState": 7,
"LastPasswordChangeOn": "2026-07-24T21:05:28.5212111+02:00",
"ShowAllFlightFieldsInMobile": true,
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"ShowFlightsFrom": 1,
"FlightChangePeriod": 1,
"Id": "79c7ed9e-f501-4afd-9309-fdb49ba9ae66",
"Language": {
"LanguageId": 1,
"LanguageKey": "sample string 2"
},
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"79c7ed9e-f501-4afd-9309-fdb49ba9ae66","ClubId":"736f413d-0f77-4410-bf0c-4c6efa4de3cd","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"b75d3890-f931-47a7-98ca-b465719543f1","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["4e0fc5eb-bd47-4010-ae2e-c8a40f845e88","5ee7d70a-7f27-40fe-983f-6949831007a2"],"AccountState":7,"LastPasswordChangeOn":"2026-07-24T21:05:28.5212111+02:00","ShowAllFlightFieldsInMobile":true,"ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"ShowFlightsFrom":1,"FlightChangePeriod":1,"Id":"79c7ed9e-f501-4afd-9309-fdb49ba9ae66","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">79c7ed9e-f501-4afd-9309-fdb49ba9ae66</Id>
<AccountState>7</AccountState>
<ClubId>736f413d-0f77-4410-bf0c-4c6efa4de3cd</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-24T21:05:28.5212111+02:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>b75d3890-f931-47a7-98ca-b465719543f1</PersonId>
<Remarks>sample string 5</Remarks>
<ShowAllFlightFieldsInMobile>true</ShowAllFlightFieldsInMobile>
<ShowFlightsFrom>1</ShowFlightsFrom>
<UserId>79c7ed9e-f501-4afd-9309-fdb49ba9ae66</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>4e0fc5eb-bd47-4010-ae2e-c8a40f845e88</d2p1:guid>
<d2p1:guid>5ee7d70a-7f27-40fe-983f-6949831007a2</d2p1:guid>
</UserRoleIds>
</UserDetails>