Signup
POST
/v1/auth/signupCreate a new account on Servebolt.
Request
Header Params
Accept
string
required
Example:
application/json
Content-Type
string
required
Example:
application/json
Body Params application/json
firstname
string
required
lastname
string
required
mobile
string
required
email
string
required
password
string
required
password_confirmation
string
required
The value must be the same as the password parameter.
country
string
required
The value must follow the ISO 3166-1 alpha-2 format, e.g. NO, US, NL.
tos
boolean
required
You must accept our terms of service.
https://servebolt.com/legal/terms-of-service/
partner_token
string | null
optional
If you are a partner and need to create users on your behalf, set the partner_token. Our Support team will provide you one.
Example
{
"firstname": "Servebolt",
"lastname": "Example",
"mobile": "+00000000000",
"email": "servebolt@example.com",
"password": "k4S8m9VR#Gc!37/NPzj(M;E?6f%rYv[n",
"password_confirmation": "k4S8m9VR#Gc!37/NPzj(M;E?6f%rYv[n",
"country": "NO",
"tos": true,
"partner_token": "4Soze0UCXeAusK56MB4HUvLHt2RjDP1J"
}
Request samples
Responses
No Content(204)
Parameter Error(422)
HTTP Code: 204
Content Type : JSONapplication/json
Data Schema
No schema defined
Example
null
Last modified: 3 months ago