API ReferenceManagementTenant Auth Access Policy Management
POST
/v1/mgmt/tenant/authaccess/settings/update

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Request Body

application/json

tenantId?string
settings?object

defaultAction decides the verdict when no rule matches.

Update a tenant's auth access policy settings. defaultAction decides the verdict when no rule matches.

curl -X POST "https://api.descope.com/v1/mgmt/tenant/authaccess/settings/update" \  -H "Content-Type: application/json" \  -d '{}'
{  "settings": {    "defaultAction": "string"  }}
export interface Response {/** * defaultAction decides the verdict when no rule matches. */settings?: {defaultAction?: string}}
Was this helpful?