API ReferenceManagementTenantsAdmin Links
POST
/v2/mgmt/tenant/adminlinks/sso/generate

Generate tenant admin SSO configuration link, using a valid management key.

Endpoint Authentication

Use authorization bearer header with the following format:

Authorization: Bearer \<ProjectId:ManagementKey\>

Try it

/v2/mgmt/tenant/adminlinks/sso/generate

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

< Project ID >:< Management Key > as bearer

In: header

Request Body

tenantIdstring

expireTimestring

emailstring

Status codeDescription
200OK
curl -X POST "https://api.descope.com/v2/mgmt/tenant/adminlinks/sso/generate" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <ProjectId:ManagementKey>" \
  -d '{
  "tenantId": "string",
  "expireTime": "string",
  "email": "string"
}'

{
  "adminSSOConfigurationLink": "string"
}

Was this helpful?