Retrieve a person's credentials
Retrieves credentials linked to the specified person in your organization.
Path Parameters
- person_id string required
The person ID
Example: 903c1ff9-f2cc-435c-b242-9d8a690fcf0a
Header Parameters
- SlashID-OrgID string required
The organization ID
Example: af5fbd30-7ce7-4548-8b30-4cd59cb2aba1
Responses
- 200
- 401
- 404
OK
- application/json
- Schema
- Example (from schema)
Schema
meta object
pagination object
limit integeroffset integertotal_count int64errors object[]
httpcode integermessage string- result object[]
{
"meta": {
"pagination": {
"limit": 0,
"offset": 0,
"total_count": 0
}
},
"errors": [
{
"httpcode": 0,
"message": "string"
}
],
"result": [
{
"id": "string",
"last_used": "2005-12-24T18:29:30.033157Z",
"type": "public-key",
"params": {
"webauthn_credential_id": "string",
"public_key": "string",
"attestation_type": "string",
"authenticator": {
"aaguid": "string",
"sign_count": 0,
"clone_warning": true
}
},
"label": "string"
},
{
"id": "string",
"last_used": "2005-12-24T18:29:30.033157Z",
"type": "public-key",
"params": {
"password_hash": "string"
},
"label": "string"
},
{
"id": "string",
"last_used": "2005-12-24T18:29:30.033157Z",
"type": "public-key",
"params": {
"recovery_codes_total": 0,
"recovery_codes_unused": 0
},
"label": "string"
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
meta object
pagination object
limit integeroffset integertotal_count int64errors object[]
httpcode integermessage string
{
"meta": {
"pagination": {
"limit": 0,
"offset": 0,
"total_count": 0
}
},
"errors": [
{
"httpcode": 0,
"message": "string"
}
]
}
Not Found
- application/json
- Schema
- Example (from schema)
Schema
meta object
pagination object
limit integeroffset integertotal_count int64errors object[]
httpcode integermessage string
{
"meta": {
"pagination": {
"limit": 0,
"offset": 0,
"total_count": 0
}
},
"errors": [
{
"httpcode": 0,
"message": "string"
}
]
}