Skip to content

Get a sign-up token

Request

Get an authentication token needed to create a Platform User

Bodyapplication/jsonrequired
emailstringrequired

The email address that the token should allow sign-up for

Example:"john.smith@gmail.com"
verificationCodestring

The code which confirms the caller is verified owner of the supplied email address

curl -i -X POST \
  https://api-v2.dash.app/platform/user-sign-up-tokens \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "john.smith@gmail.com",
    "verificationCode": "string"
  }'

Responses

Success

Bodyapplication/json
tokenstringrequired

The authentication token to be used to complete sign-up

Response
{ "token": "string" }