API ReferenceManagementOauth Management
GET
/v1/mgmt/oauth/settings

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Get the project's general OAuth settings, using a valid management key.

curl -X GET "https://api.descope.com/v1/mgmt/oauth/settings"
{  "enabled": true}
/** * Patch semantics: omitted fields are left untouched; present fields are written. */export interface Response {enabled?: boolean}
Was this helpful?