Devices
This set of API calls allows you to fetch and manipulate Keyless enabled devices.
Get user devices
The user id
User devices
Request is invalid and shouldn't be retried if the request is unchanged
Unauthorized request, the request can't be processed unless you provide a valid authentication method
Resource not found
Not acceptable representation
An internal error occurred, please try again later or contact the support.
GET /v2/users/{userId}/devices HTTP/1.1
Host:
X-Api-Key: YOUR_API_KEY
Accept: */*
[
{
"userId": "0123456789ABCDEF",
"sdkCustomerId": 1,
"publicSigningKey": "text",
"publicEncryptionKey": "text",
"state": "ACTIVE",
"createdAt": "2020-01-02T03:04:05.242194378",
"osVersion": "text",
"sdkVersion": "text",
"deletedAt": "2020-01-02T03:04:05.242194378"
}
]
Delete user device
The user id
Public signing key
Device successfully deleted
Request is invalid and shouldn't be retried if the request is unchanged
Unauthorized request, the request can't be processed unless you provide a valid authentication method
Resource not found
Not acceptable representation
An internal error occurred, please try again later or contact the support.
DELETE /v2/users/{userId}/devices/{publicSigningKey} HTTP/1.1
Host:
X-Api-Key: YOUR_API_KEY
Accept: */*
{
"success": true
}
Last updated
Was this helpful?