/role-store/api/v1/users/{user_id}/webauthn-credentials
Get user's webauthn credentials
offset
int
Offset where to start fetching the items
limit
int
Number of items to return
sortkey
string
Sort by specific object property
sortdir
string
Sort direction, asc or desc
Successful response
{
"count": 123,
"items": [
{
"id": "5bf77342-221c-11ee-be56-0242ac120002",
"credential_id": "string",
"name": "string",
"comment": "string",
"last_used": "2017-01-01T15:05:05Z",
"created": "2017-01-01T15:05:05Z",
"author": "5bf77342-221c-11ee-be56-0242ac120002",
"updated": "2017-01-01T15:05:05Z",
"updated_by": "eef4aefc-d64e-4c2c-aba4-4914c86ce059"
}
]
}
/role-store/api/v1/users/{user_id}/webauthn-credentials/{id}
Get user's webauthn credential
user_id
string
required
User ID
id
string
required
Credential UUID
Successful response
{
"id": "5bf77342-221c-11ee-be56-0242ac120002",
"credential_id": "string",
"name": "string",
"comment": "string",
"last_used": "2017-01-01T15:05:05Z",
"created": "2017-01-01T15:05:05Z",
"author": "5bf77342-221c-11ee-be56-0242ac120002",
"updated": "2017-01-01T15:05:05Z",
"updated_by": "eef4aefc-d64e-4c2c-aba4-4914c86ce059"
}
/role-store/api/v1/users/{user_id}/webauthn-credentials/{id}
Update user's webauthn credential meta data
name
string
Credential name
comment
string
Optional comment
{
"name": "string",
"comment": "string"
}
Successful response
Empty response
/role-store/api/v1/users/{user_id}/webauthn-credentials/{id}
Delete user's webauthn credential
user_id
string
required
User ID
id
string
required
Credential UUID
Successful response
Empty response
Was this page helpful?