- Introduction
- Auth
- Bolts
- Environments
- Git
- Domains
- Logs
- List Environments
- Create Environment
- Get Environment
- Update Environment
- Delete Environment
- Purge Environment Cache
- List Environment Cronjobs
- Get Environment Statistics
- Get Environment Available Settings
- Get Environment PHP Versions
- Get Environment Usage
- Get Environment SSH Accesses
- Create Environment SSH Access
- Remove Environment SSH Access
- List Environment Databases
- Toggle Environment Dev Mode
- Environment Install Wordpress
- Environment Optimize Wordpress
- Locations
- Databases
- Cronjobs
- SSH Keys
- Certificates
- Billing
- Profile
Signup
POST
https://api.servebolt.io/v1/auth/signup
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
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
country
string
required
tos
boolean
required
https://servebolt.com/legal/terms-of-service/
partner_token
string | null
optional
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
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.servebolt.io/v1/auth/signup' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"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"
}'
Responses
🟢204No Content
application/json
Body
No schema defined
Example
null
🟠422Parameter Error
Modified at 2024-09-03 09:40:47