GET
/v1/mgmt/totp/settingsAuthorization
Descope Project ID and Management Key AuthorizationBearer <token>
Project ID:Management Key as bearer token.
In: header
Get the project's TOTP settings, using a valid management key.
curl -X GET "https://api.descope.com/v1/mgmt/totp/settings"{ "enabled": true, "issuerLabelTemplate": "string"}/** * TOTP (Terraform: descope_totp_settings). * Patch semantics: omitted fields are left untouched; present fields are written. */export interface Response {enabled?: booleanissuerLabelTemplate?: string} Was this helpful?