POST api/Auth/Register
Request Information
URI Parameters
None.
Body Parameters
UserRegistrationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| string |
None. |
||
| PhoneNumber | string |
None. |
|
| Password | string |
None. |
|
| DateOfBirth | date |
None. |
|
| StoreId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"FirstName": "sample string 1",
"LastName": "sample string 2",
"Email": "sample string 3",
"PhoneNumber": "sample string 4",
"Password": "sample string 5",
"DateOfBirth": "2026-07-13T12:35:34.6391688+10:00",
"StoreId": "6fd0dea7-66c4-4f4e-a8f3-b69b4d680c8e"
}
application/xml, text/xml
Sample:
<UserRegistrationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi2.Controllers"> <DateOfBirth>2026-07-13T12:35:34.6391688+10:00</DateOfBirth> <Email>sample string 3</Email> <FirstName>sample string 1</FirstName> <LastName>sample string 2</LastName> <Password>sample string 5</Password> <PhoneNumber>sample string 4</PhoneNumber> <StoreId>6fd0dea7-66c4-4f4e-a8f3-b69b4d680c8e</StoreId> </UserRegistrationDto>
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.