ApiManagementTenants
POST
/v1/mgmt/tenant/adminlinks/sso/authenticated/batch

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Request Body

application/json

tenantId?string
ssoIds?array<string>
string

Get default SSO admin link plus per-ssoId admin links for authenticated users only, using a valid management key

curl -X POST "https://api.descope.com/v1/mgmt/tenant/adminlinks/sso/authenticated/batch" \  -H "Content-Type: application/json" \  -d '{}'
{  "defaultLink": "string",  "ssoIdToLink": {    "property1": "string",    "property2": "string"  }}
export interface Response {defaultLink?: stringssoIdToLink?: {[k: string]: string}}
Was this helpful?