# 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. Endpoint: GET /v1/mfa/devices/{id}/keys Version: 1.0 ## Path parameters: - `id` (string, required) ## Response 200 fields (application/json): - `device_id` (string) ID of the device. Example: "6642d15e-8f6b-4d28-9186-cdd61d80032a" - `person_id` (string) ID of the person who owns the device. Example: "ec3d16cbc106f481b72d881d90c89cc5cper" - `name` (string) The name of the device. Example: "Test device" - `created_at` (string) Date and time when the customer registered the device. Example: "2022-03-18T14:50:04Z" - `deleted_at` (string) (For deleted devices only) Date and time when the device was deleted. Example: "2022-04-18T14:55:04Z" - `keys` (array) - `keys.key_id` (string) ID of the key. Example: "3e1415b8-901d-4c1a-8950-f3a1083c6c3b" - `keys.key_purpose` (string) The purpose of the key (either or ). Enum: "restricted", "unrestricted" - `keys.used_at` (string) Date and time when the key was last used (e.g., for device signing). Example: "2022-03-18T14:55:04Z" ## Response 400 fields (application/json): - `title` (string) Example: "Failed to build pagination headers." - `status` (integer) Example: "400" - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `detail` (string) Example: "Cannot connect to database." - `code` (string) Example: "build_pagination_headers_failure" - `error_code` (string) a static error_code that can be used to identify the error Example: "telephone_number_not_found" ## Response 401 fields (application/json): - `errors` (array) - `errors.status` (integer) - `errors.source` (object) - `errors.source.field` (string) - `errors.source.message` (string) - `errors.code` (string) - `errors.title` (string) - `errors.detail` (string) - `errors.id` (string) Correlation/Request ID ## Response 403 fields (application/json): - `title` (string) Example: "Unauthorized Action" - `status` (integer) Example: "403" - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `detail` (string) Example: "Unauthorized action is not allowed." - `code` (string) Example: "unauthorized_action" - `error_code` (string) a static error_code that can be used to identify the error Example: "forbidden" ## Response 404 fields (application/json): - `title` (string) Example: "Model Not Found" - `status` (integer) Example: "404" - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `detail` (string) Example: "Couldn't find 'Account' for id 'DE24112233445566'." - `code` (string) Example: "model_not_found" - `error_code` (string) a static error_code that can be used to identify the error Example: "not_found" ## Response 500 fields (application/json): - `id` (string) Example: "e8915041-9d8c-4d96-9dd1-04e8522ecdbf" - `status` (integer) Example: "500" - `code` (string) Example: "generic_error" - `title` (string) Example: "Generic Error" - `detail` (string) Example: "There was an error." - `error_code` (string) a static error_code that can be used to identify the error Example: "generic_error"