ApiManagementUsers
POST
/v1/mgmt/user/passkeys/list

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Request Body

application/json

loginId?string

List all passkeys for a user, using a valid management key.

curl -X POST "https://api.descope.com/v1/mgmt/user/passkeys/list" \  -H "Content-Type: application/json" \  -d '{}'
{  "passkeys": [    {      "id": "string",      "rpId": "string",      "kind": "string",      "displayName": "string",      "createdTime": 0    }  ]}
export interface Response {passkeys?: UserPasskey[]}export interface UserPasskey {id?: stringrpId?: stringkind?: stringdisplayName?: stringcreatedTime?: number}
Was this helpful?