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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
accounts
object[]
required

The accounts you would like to invite.

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.

resource_key
string
required

The resource key of the resource to which you are inviting someone.

Response

200
application/json
OK
accounts
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.