POST v1/Account/Register
Register a new user account.
Request Information
URI Parameters
None.
Body Parameters
JSON object
RegisterBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Title | string |
Required String length: inclusive between 0 and 5 |
|
| FirstName | string |
Required String length: inclusive between 0 and 20 |
|
| LastName | string |
Required String length: inclusive between 0 and 20 |
|
| JobTitle | string |
Required String length: inclusive between 0 and 20 |
|
| string |
Required String length: inclusive between 0 and 256 |
||
| UserName | string |
Required String length: inclusive between 0 and 256 |
|
| Password | string |
Required Data type: Password String length: inclusive between 6 and 100 |
|
| ConfirmPassword | string |
Required Data type: Password |
|
| BranchUsername | string |
Required |
|
| BranchPassword | string |
Required Data type: Password |
Request Formats
application/json, text/json
Sample:
{
"title": "sample string 1",
"firstName": "sample string 2",
"lastName": "sample string 3",
"jobTitle": "sample string 4",
"email": "sample string 5",
"userName": "sample string 6",
"password": "sample string 7",
"confirmPassword": "sample string 8",
"branchUsername": "sample string 9",
"branchPassword": "sample string 10"
}
Response Information
Resource Description
HTTP 200 code if successful
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.
