GET api/v1/users/my
Gets my user details.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
UserDetailsName | 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": "3a01843f-9b2a-4e1e-a3e0-bbb18f7b1cc8", "ClubId": "f8c42e3e-667f-4706-8f51-b119b4fd40b7", "FriendlyName": "sample string 3", "NotificationEmail": "sample string 4", "PersonId": "2784cd36-ab2c-48c6-906d-15639964a99a", "Remarks": "sample string 5", "UserName": "sample string 6", "UserRoleIds": [ "d970a8d9-da58-436f-b1d7-2dd18ea67b94", "047e2fa5-c281-4598-adaf-3b1ced001a29" ], "AccountState": 7, "LastPasswordChangeOn": "2024-04-02T18:19:31.2122877+02:00", "ShowAllFlightFieldsInMobile": true, "ForcePasswordChangeNextLogon": true, "EmailConfirmed": true, "ShowFlightsFrom": 1, "FlightChangePeriod": 1, "Id": "3a01843f-9b2a-4e1e-a3e0-bbb18f7b1cc8", "Language": { "LanguageId": 1, "LanguageKey": "sample string 2" }, "CanUpdateRecord": true, "CanDeleteRecord": true }
text/html
Sample:
{"UserId":"3a01843f-9b2a-4e1e-a3e0-bbb18f7b1cc8","ClubId":"f8c42e3e-667f-4706-8f51-b119b4fd40b7","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"2784cd36-ab2c-48c6-906d-15639964a99a","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["d970a8d9-da58-436f-b1d7-2dd18ea67b94","047e2fa5-c281-4598-adaf-3b1ced001a29"],"AccountState":7,"LastPasswordChangeOn":"2024-04-02T18:19:31.2122877+02:00","ShowAllFlightFieldsInMobile":true,"ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"ShowFlightsFrom":1,"FlightChangePeriod":1,"Id":"3a01843f-9b2a-4e1e-a3e0-bbb18f7b1cc8","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">3a01843f-9b2a-4e1e-a3e0-bbb18f7b1cc8</Id> <AccountState>7</AccountState> <ClubId>f8c42e3e-667f-4706-8f51-b119b4fd40b7</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>2024-04-02T18:19:31.2122877+02:00</LastPasswordChangeOn> <NotificationEmail>sample string 4</NotificationEmail> <PersonId>2784cd36-ab2c-48c6-906d-15639964a99a</PersonId> <Remarks>sample string 5</Remarks> <ShowAllFlightFieldsInMobile>true</ShowAllFlightFieldsInMobile> <ShowFlightsFrom>1</ShowFlightsFrom> <UserId>3a01843f-9b2a-4e1e-a3e0-bbb18f7b1cc8</UserId> <UserName>sample string 6</UserName> <UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>d970a8d9-da58-436f-b1d7-2dd18ea67b94</d2p1:guid> <d2p1:guid>047e2fa5-c281-4598-adaf-3b1ced001a29</d2p1:guid> </UserRoleIds> </UserDetails>