POST api/registeruser
Request Information
URI Parameters
None.
Body Parameters
NewUser| Name | Description | Type | Additional information |
|---|---|---|---|
| Firstname | string |
None. |
|
| Lastname | string |
None. |
|
| string |
None. |
||
| Password | string |
None. |
|
| DeviceIdentifier | string |
None. |
|
| VerifyLink | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Firstname": "sample string 1",
"Lastname": "sample string 2",
"Email": "sample string 3",
"Password": "sample string 4",
"DeviceIdentifier": "sample string 5",
"VerifyLink": "sample string 6"
}
application/xml, text/xml
Sample:
<NewUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VerweyWebApi.Services.Authentication.Models"> <DeviceIdentifier>sample string 5</DeviceIdentifier> <Email>sample string 3</Email> <Firstname>sample string 1</Firstname> <Lastname>sample string 2</Lastname> <Password>sample string 4</Password> <VerifyLink>sample string 6</VerifyLink> </NewUser>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.