Skip to main content
POST
/
signup
cURL
curl --request POST \
  --url https://dev.namify.host/signup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "name": "<string>",
  "company": "<string>",
  "address": "<string>",
  "city": "<string>",
  "state": "<string>",
  "country_code": "<string>",
  "phone": "<string>",
  "password": "<string>"
}
'
{
  "message": "User created"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
email
string<email>
required
name
string
required
company
string
required
address
string
required
city
string
required
state
string
required
country_code
string
required
phone
string
required
password
string<password>
required

Response

User created successfully.

message
string
Example:

"User created"