POST
/
iam
/
accounts
/
v1
curl --request POST \
  --url https://api.mottostreaming.com/iam/accounts/v1 \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "<string>",
  "password": "<string>",
  "first_name": "<string>",
  "last_name": "<string>"
}'
{
  "account": {
    "id": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "email": "<string>",
    "verified": true,
    "survey": "SURVEY_STATUS_UNSPECIFIED"
  },
  "token": "<string>"
}

Body

application/json
email
string
required
password
string
required

Password must not be less than 8 characters long, must contain at least one letter, must contain at least one number or special character and have not more than 3 repeating characters

first_name
string
last_name
string

Response

200
application/json
OK
account
object

An account that can be used to identify someone within the Motto Studio API. Important: not to be confused with User which is a user of the Motto Content Delivery API.

token
string