POST api/v1/users
Inserts the user details.
Request Information
URI Parameters
None.
Body Parameters
The user details.
UserRegistrationDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| 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. |
|
| EmailConfirmationLink | string |
Required String length: inclusive between 0 and 256 |
Request Formats
application/json, text/json
Sample:
{
"FriendlyName": "sample string 1",
"NotificationEmail": "sample string 2",
"PersonId": "7371db43-85b9-4961-b881-759e30d3b669",
"Remarks": "sample string 3",
"UserName": "sample string 4",
"UserRoleIds": [
"bf288477-9428-4da3-9a0d-35aca5b74c8d",
"6f926516-c337-4961-90f9-0c1679fe21c2"
],
"EmailConfirmationLink": "sample string 5"
}
text/html
Sample:
{"FriendlyName":"sample string 1","NotificationEmail":"sample string 2","PersonId":"7371db43-85b9-4961-b881-759e30d3b669","Remarks":"sample string 3","UserName":"sample string 4","UserRoleIds":["bf288477-9428-4da3-9a0d-35aca5b74c8d","6f926516-c337-4961-90f9-0c1679fe21c2"],"EmailConfirmationLink":"sample string 5"}
application/xml, text/xml
Sample:
<UserRegistrationDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.User">
<EmailConfirmationLink>sample string 5</EmailConfirmationLink>
<FriendlyName>sample string 1</FriendlyName>
<NotificationEmail>sample string 2</NotificationEmail>
<PersonId>7371db43-85b9-4961-b881-759e30d3b669</PersonId>
<Remarks>sample string 3</Remarks>
<UserName>sample string 4</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>bf288477-9428-4da3-9a0d-35aca5b74c8d</d2p1:guid>
<d2p1:guid>6f926516-c337-4961-90f9-0c1679fe21c2</d2p1:guid>
</UserRoleIds>
</UserRegistrationDetails>
application/x-www-form-urlencoded
Sample:
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": "f83ad21c-26b4-4599-b9da-2cadad0996df",
"ClubId": "4d0a1a7d-6b8b-41af-b319-ca598ff3128d",
"FriendlyName": "sample string 3",
"NotificationEmail": "sample string 4",
"PersonId": "be7350fd-5988-46c8-a602-4403c596b7c6",
"Remarks": "sample string 5",
"UserName": "sample string 6",
"UserRoleIds": [
"611ed812-a66e-4d51-bcee-e381e7c8795d",
"53796432-d4ec-4e15-a28e-e63ba5e7f9fb"
],
"AccountState": 7,
"LastPasswordChangeOn": "2025-10-24T22:49:20.6186614+02:00",
"ShowAllFlightFieldsInMobile": true,
"ForcePasswordChangeNextLogon": true,
"EmailConfirmed": true,
"ShowFlightsFrom": 1,
"FlightChangePeriod": 1,
"Id": "f83ad21c-26b4-4599-b9da-2cadad0996df",
"Language": {
"LanguageId": 1,
"LanguageKey": "sample string 2"
},
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"UserId":"f83ad21c-26b4-4599-b9da-2cadad0996df","ClubId":"4d0a1a7d-6b8b-41af-b319-ca598ff3128d","FriendlyName":"sample string 3","NotificationEmail":"sample string 4","PersonId":"be7350fd-5988-46c8-a602-4403c596b7c6","Remarks":"sample string 5","UserName":"sample string 6","UserRoleIds":["611ed812-a66e-4d51-bcee-e381e7c8795d","53796432-d4ec-4e15-a28e-e63ba5e7f9fb"],"AccountState":7,"LastPasswordChangeOn":"2025-10-24T22:49:20.6186614+02:00","ShowAllFlightFieldsInMobile":true,"ForcePasswordChangeNextLogon":true,"EmailConfirmed":true,"ShowFlightsFrom":1,"FlightChangePeriod":1,"Id":"f83ad21c-26b4-4599-b9da-2cadad0996df","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">f83ad21c-26b4-4599-b9da-2cadad0996df</Id>
<AccountState>7</AccountState>
<ClubId>4d0a1a7d-6b8b-41af-b319-ca598ff3128d</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-24T22:49:20.6186614+02:00</LastPasswordChangeOn>
<NotificationEmail>sample string 4</NotificationEmail>
<PersonId>be7350fd-5988-46c8-a602-4403c596b7c6</PersonId>
<Remarks>sample string 5</Remarks>
<ShowAllFlightFieldsInMobile>true</ShowAllFlightFieldsInMobile>
<ShowFlightsFrom>1</ShowFlightsFrom>
<UserId>f83ad21c-26b4-4599-b9da-2cadad0996df</UserId>
<UserName>sample string 6</UserName>
<UserRoleIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>611ed812-a66e-4d51-bcee-e381e7c8795d</d2p1:guid>
<d2p1:guid>53796432-d4ec-4e15-a28e-e63ba5e7f9fb</d2p1:guid>
</UserRoleIds>
</UserDetails>