action britbox_get_device { label: "getDevice" description: "Get a registered device." provider: britbox method: GET path: "/account/devices/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["id", "name", "registrationDate", "type"] properties: { id: { type: "string" description: "The unique identifier for this device e.g. serial number." } name: { type: "string" description: "The human recognisable name for this device." } registrationDate: { type: "string" format: "date-time" description: "The date this device was registered." } type: { type: "string" description: "The device type e.g. web_browser." } } additionalProperties: false } }