latestOpenAPI 3.0.12026-08-102423137.1 KB

80dd46738839

Device binding

List all keys for a bound device

Retrieves a list of all registered keys associated with a device registered to a customer through the device binding process.

get/v1/mfa/devices/{id}/keys

Path parameters

idstring required

Response

OK

device_idstring

ID of the device.

person_idstring

ID of the person who owns the device.

namestring

The name of the device.

created_atstring

Date and time when the customer registered the device.

deleted_atstring

(For deleted devices only) Date and time when the device was deleted.

Example response

[
  {
    "device_id": "6642d15e-8f6b-4d28-9186-cdd61d80032a",
    "person_id": "ec3d16cbc106f481b72d881d90c89cc5cper",
    "name": "Test device",
    "created_at": "2022-03-18T14:50:04Z",
    "deleted_at": "2022-04-18T14:55:04Z",
    "keys": [
      {
        "key_id": "3e1415b8-901d-4c1a-8950-f3a1083c6c3b",
        "key_purpose": "unrestricted",
        "used_at": "2022-03-18T14:55:04Z"
      }
    ]
  }
]