Signup
This API allows a new user to sign up on the Indee platform.
The authorization header must carry the API key that was provided during application registration.
Header |
Value |
Authorization |
Bearer api_key |
Endpoint
Request Body
{
"username": "john.doe",
"email": "john.doe@example.com",
"password": "enteryourpassword"
}
Parameter |
Type |
Requirement |
Description |
username |
String |
Required |
The name of the user. |
email |
String |
Required |
The email ID of the user. |
password |
String |
Required |
User password. |
Response
{
"status_code": "W0000",
"message": ""
}
Field |
Type |
Description |
status_code |
Integer |
The Indee API status code. See the full list of codes in the Status Codes section. |