API ReferenceManagementPasskey Management
GET
/v1/mgmt/passkey/settings

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Get the project's passkey (WebAuthn) settings, using a valid management key.

curl -X GET "https://api.descope.com/v1/mgmt/passkey/settings"
{  "enabled": true,  "relyingPartyId": "string",  "name": "string",  "androidFingerprints": null}
/** * Passkey / WebAuthn (Terraform: descope_passkey_settings). *  Patch semantics: omitted fields are left untouched; present fields are written. */export interface Response {enabled?: booleanrelyingPartyId?: stringname?: string/** * JSON array of strings; Value makes empty and absent distinct: null/absent = keep, [] = clear, values = set. Validated in the service */androidFingerprints?: {[k: string]: unknown}}
Was this helpful?