POST api/Users/CreateUserAndroid
Request Information
URI Parameters
None.
Body Parameters
User| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| string |
None. |
||
| Pwz | string |
None. |
|
| Phone | string |
None. |
|
| Specialization | integer |
None. |
|
| MainConsent_1 | boolean |
None. |
|
| MainConsent_2 | boolean |
None. |
|
| SubConsent_mail | boolean |
None. |
|
| SubConsent_phone | boolean |
None. |
|
| SubConsent_sms | boolean |
None. |
|
| SubConsent_web | boolean |
None. |
|
| Hash | string |
None. |
|
| Salt | string |
None. |
|
| UserGuid | globally unique identifier |
None. |
|
| LogDateCreate | date |
None. |
|
| RegistrationConfirmed | boolean |
None. |
|
| RetentionRequest | boolean |
None. |
|
| AppAdvice | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"FirstName": "sample string 2",
"LastName": "sample string 3",
"Mail": "sample string 4",
"Pwz": "sample string 5",
"Phone": "sample string 6",
"Specialization": 7,
"MainConsent_1": true,
"MainConsent_2": true,
"SubConsent_mail": true,
"SubConsent_phone": true,
"SubConsent_sms": true,
"SubConsent_web": true,
"Hash": "sample string 14",
"Salt": "sample string 15",
"UserGuid": "7b6467c1-8c60-4a0e-8eee-410c6debbad6",
"LogDateCreate": "2026-04-18T16:25:50.3729759+02:00",
"RegistrationConfirmed": true,
"RetentionRequest": true,
"AppAdvice": 1
}
application/xml, text/xml
Sample:
<User xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/v1api.Schema"> <AppAdvice>1</AppAdvice> <FirstName>sample string 2</FirstName> <Hash>sample string 14</Hash> <Id>1</Id> <LastName>sample string 3</LastName> <LogDateCreate>2026-04-18T16:25:50.3729759+02:00</LogDateCreate> <Mail>sample string 4</Mail> <MainConsent_1>true</MainConsent_1> <MainConsent_2>true</MainConsent_2> <Phone>sample string 6</Phone> <Pwz>sample string 5</Pwz> <RegistrationConfirmed>true</RegistrationConfirmed> <RetentionRequest>true</RetentionRequest> <Salt>sample string 15</Salt> <Specialization>7</Specialization> <SubConsent_mail>true</SubConsent_mail> <SubConsent_phone>true</SubConsent_phone> <SubConsent_sms>true</SubConsent_sms> <SubConsent_web>true</SubConsent_web> <UserGuid>7b6467c1-8c60-4a0e-8eee-410c6debbad6</UserGuid> </User>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
NewUser| Name | Description | Type | Additional information |
|---|---|---|---|
| Guid | globally unique identifier |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| string |
None. |
||
| Pwz | string |
None. |
|
| Phone | string |
None. |
|
| Specialization | integer |
None. |
|
| MainConsent_1 | boolean |
None. |
|
| MainConsent_2 | boolean |
None. |
|
| SubConsent_mail | boolean |
None. |
|
| SubConsent_phone | boolean |
None. |
|
| SubConsent_sms | boolean |
None. |
|
| SubConsent_web | boolean |
None. |
|
| AppAdvice | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Guid": "35fc0c6e-59cb-4710-9af5-39978607efc6",
"FirstName": "sample string 2",
"LastName": "sample string 3",
"Mail": "sample string 4",
"Pwz": "sample string 5",
"Phone": "sample string 6",
"Specialization": 1,
"MainConsent_1": true,
"MainConsent_2": true,
"SubConsent_mail": true,
"SubConsent_phone": true,
"SubConsent_sms": true,
"SubConsent_web": true,
"AppAdvice": 1
}
application/xml, text/xml
Sample:
<NewUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/v1api.Models"> <AppAdvice>1</AppAdvice> <FirstName>sample string 2</FirstName> <Guid>35fc0c6e-59cb-4710-9af5-39978607efc6</Guid> <LastName>sample string 3</LastName> <Mail>sample string 4</Mail> <MainConsent_1>true</MainConsent_1> <MainConsent_2>true</MainConsent_2> <Phone>sample string 6</Phone> <Pwz>sample string 5</Pwz> <Specialization>1</Specialization> <SubConsent_mail>true</SubConsent_mail> <SubConsent_phone>true</SubConsent_phone> <SubConsent_sms>true</SubConsent_sms> <SubConsent_web>true</SubConsent_web> </NewUser>