Skip to main content
POST
/
iam
/
users
/
v1
/
apple
cURL
curl --request POST \
  --url https://api.mottostreaming.com/iam/users/v1/apple \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "project_id": "<string>",
  "audiences": [
    "<string>"
  ]
}'
{
  "integration": {
    "project_id": "<string>",
    "audiences": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

AppleSignInIntegration

project_id
string
required

The Motto project to which this integration belongs

audiences
string[]
required

The audience strings that are allowed on the signed JWT token. For iOS, this is typically the bundle ID.

Response

OK

integration
object

AppleSignInIntegration

I