Skip to main content
POST
/
api
/
auth
/
register
Create a workspace user
curl --request POST \
  --url https://app.telentir.com/api/auth/register \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "firstName": "<string>",
  "lastName": "<string>",
  "email": "[email protected]",
  "phone": "<string>",
  "password": "<string>",
  "confirmPassword": "<string>",
  "remember": true
}
'
{
  "status": "phone_not_verified",
  "token": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
firstName
string
required
lastName
string
required
email
string<email>
required
phone
string
required
password
string<password>
required
confirmPassword
string<password>
required
remember
boolean
default:true
required

Response

Registration status

status
enum<string>
Available options:
phone_not_verified
token
string