action bunq_list_all_device_server { description: "Get a collection of all the DeviceServers you have created." provider: bunq method: GET path: "/device-server" encoding: json output: { type: "array" items: { type: "object" properties: { created: { type: "string" description: "The timestamp of the DeviceServer's creation." } description: { type: "string" description: "The description of the DeviceServer." } id: { type: "integer" description: "The id of the DeviceServer as created on the server." } ip: { type: "string" description: "The ip address which was used to create the DeviceServer." } status: { type: "string" description: "The status of the DeviceServer. Can be ACTIVE, BLOCKED, NEEDS_CONFIRMATION or OBSOLETE." } updated: { type: "string" description: "The timestamp of the DeviceServer's last update." } } } } }