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

Authorizations

Authorization
string
header
required

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

Body

application/json

GoogleSignInIntegration

project_id
string
required

The Motto project to which this integration belongs

oauth_client_ids
string[]
required

The OAuth client IDs as defined in Google Cloud Console. There can be multiple client IDs if the integration is used across multiple platforms (e.g., web, iOS, Android). There must be at least one client ID.

Response

OK

integration
object

GoogleSignInIntegration

I