POST api/v1/development/user/create
Creates a user account from the specified user information.
Request Information
Headers
URI Parameters
None.
Body Parameters
The user informaton with user name and password
UserDetail| Name | Description | Type | Additional information |
|---|---|---|---|
|
The email address |
string |
Required |
|
| UserName |
The user name |
string |
Required |
| Password |
The password |
string |
Required |
Request Formats
application/json
Sample:
{
"Email": "sample string 1",
"Username": "sample string 2",
"Password": "sample string 3"
}
Response Information
Headers
Resource Description
Application Status - Result, Status code, Message
Application Accept - AA, 200, OK
Application Reject - AR, 204, No Content
Application Reject - AR, 400, User already exists
Application Error - AE, 500, Failed to create user
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Result |
Result of the response |
string |
None. |
| Message |
Additional information of the response |
string |
None. |
Response Formats
application/json
Sample:
{
"Result": "sample string 1",
"Message": "sample string 2"
}