Skip to main content
POST
/
v6
/
config
/
integrations
/
identityProvider
Configure identity provider
curl --request POST \
  --url https://sandbox.tight.com/v6/config/integrations/identityProvider \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "issuerUri": "https://your-tenant.auth0.com/",
  "identityProvider": "AUTH0"
}
'
{
  "result": "SUCCESS",
  "data": {
    "issuerUri": "https://your-tenant.auth0.com/",
    "identityProvider": "AUTH0"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, see Authentication for more detail.

Body

application/json
issuerUri
string
required

The issuer URI of the identity provider

Example:

"https://your-tenant.auth0.com/"

identityProvider
enum<string>
required

The type of identity provider

Available options:
AUTH0,
AWS_COGNITO,
OKTA,
STYTCH
Example:

"AUTH0"

Response

Success

result
enum<string>

The result of the action performed.

Available options:
SUCCESS,
FAILURE
data
object

The data generated by the action performed.