# Get a sign-up token Get an authentication token needed to create a Platform User Endpoint: POST /platform/user-sign-up-tokens Version: 2.0.0 Security: ## Request fields (application/json): - `email` (string, required) The email address that the token should allow sign-up for Example: "john.smith@gmail.com" - `verificationCode` (string) The code which confirms the caller is verified owner of the supplied email address ## Response 200 fields (application/json): - `token` (string, required) The authentication token to be used to complete sign-up ## Response 4XX fields (application/json): - `timestamp` (string) The datetime that the error occurred in ISO offset format Example: "2021-02-16T16:21:58.640+00:00" - `status` (integer) The HTTP status code of the error Example: 401 - `error` (string) The title of the error Example: "Unauthorized" - `message` (string) A more detailed error message - `path` (string) The path that was called which led to the error Example: "/folder-settings"