Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

General Information

...

Data Models: UsersTokens

Workflow: Join Flow

Input

...

Type: application/json
NameSourceMandatoryTypeSpecial FormatDescription
usernameBodyYESStringalphanumeric with _ , - characters only
passwordBodyYESStringN/A
firstNameBodyYESStringN/A
lastNameBodyYESStringN/A
emailBodyYESStringN/A

Email Address Format (JSON Schema Validation)



Output

...

Valid Response

Code Block
languagejs
titleValid Response Sample
{
	"result": true,
	"data": "..."{}
}


Invalid Response

Code Block
languagejs
titleError Response Sample
{
    "result":false,
    "errors":{
        "codes":[402],
        "details":[
            {
                "code":402,
                "message":"User account already exists."
            }
        ]
    }
}

...