Telemetry
This API calls allows you to retrieve meta data related to a user or specific transaction.
Introduction
Keyless is inevitably used as part of a wider authentication flow, whether it's an account recovery, login or step-up authentication. Integrators use this feature to collect additional insights around user transactions such as the result, errors and type of authentication and then leverage this data in their own systems for analytics, orchestration or fraud decisioning.
Get all user authentications in the last 10 minutes. This can be optionally filtered by operation id in order to return a specific transaction/authentication attempt.
The user id
Operation id to filter the results
User authentications
Unauthorized request, the request can't be processed unless you provide a valid authentication method
User not found
GET /v2/users/{userId}/authentications HTTP/1.1
Host:
X-Api-Key: YOUR_API_KEY
Accept: */*
{
"page": {
"number": 1,
"totalElements": 1,
"totalPages": 1,
"size": 1
},
"content": [
{
"userId": "0123456789ABCDEF",
"authentications": [
{
"createdAt": "text",
"result": "APPROVED",
"errorCode": 1,
"operationId": "text",
"deviceId": "text",
"authType": "biom"
}
]
}
]
}
Get all user authentications in the last 10 minutes using the External User ID (i.e. the unique identifier the user is identified by in your own system). This can be optionally filtered by operation id in order to return a specific transaction/authentication attempt.
The customer-meaningful user id. Case-sensitive
Operation id to filter the results
External user authentications
Unauthorized request, the request can't be processed unless you provide a valid authentication method
External user not found
GET /v2/external-users/{externalUserId}/authentications HTTP/1.1
Host:
X-Api-Key: YOUR_API_KEY
Accept: */*
{
"page": {
"number": 1,
"totalElements": 1,
"totalPages": 1,
"size": 1
},
"content": [
{
"externalUserId": "text",
"authentications": [
{
"createdAt": "text",
"result": "APPROVED",
"errorCode": 1,
"operationId": "text",
"deviceId": "text",
"authType": "biom"
}
]
}
]
}
Last updated
Was this helpful?