Get an authentication token needed to create a Platform User
- Productionhttps://api-v2.dash.app/platform/user-sign-up-tokens
- Staginghttps://api-v2.dashstaging.app/platform/user-sign-up-tokens
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"
}'Response
{ "token": "string" }