v1

latestOpenAPI 3.0.12026-07-26222700728.0 KB
Identity Provider Configuration

Configure identity provider

Configure the identity provider integration for the partner

post/v6/config/integrations/identityProvider

Request body

issuerUristring required

The issuer URI of the identity provider

identityProvider'AUTH0' | 'AWS_COGNITO' | 'OKTA' | 'STYTCH' required

The type of identity provider

Example request

{
  "issuerUri": "https://your-tenant.auth0.com/",
  "identityProvider": "AUTH0"
}

Response

Success

result'SUCCESS' | 'FAILURE'

The result of the action performed.

Example response

{
  "data": {
    "issuerUri": "https://your-tenant.auth0.com/",
    "identityProvider": "AUTH0"
  }
}