Get Registered Devices
This API can be used to check if a device is already registered for authorized remote signing.
|
https://api.signinghub.com/v3/authorization/devices |
||
|
HTTP Verb |
GET |
|
|
Authorization |
Bearer {access_token} |
|
|
Content-Type |
application/json |
|
|
Accept |
application/json |
|
|
Request Body |
|
|
|
Status Code |
Message |
Response Body |
|
200 |
OK |
[{ "device_id": "", "device_name": "", "secure_element": true, "touch_id": true}] |
| 403 | Forbidden |
{ "Message": "Account is disabled"} |
| 404 | Not Found | |
|
500 |
Internal Server Error |
{ "Message": "An internal server error occurred while processing the request"} |
| Item Details | |
| Names |
Description |
| Request Parameters |
|
| access_token | The access token obtained as a result of successful authentication. If "scope" parameter was used in authentication request, then this service requires the access token to be obtained using the credentials of an Enterprise admin whose enterprise role has the application integration privileges. |
| Response Parameters | |
| device_id | Device ID of the hardware device used to create the CSR file. |
| device_name | Device name of the hardware device used to create the CSR file. |
| secure_element | True if secure element is found in the hardware device. |
| touch_id | True if touch ID is enabled on the hardware device. |
| Message | The service specific error message returned by the API. This message provides useful information about why the service has returned an error response. |