action bunq_list_all_device { description: "Get a collection of Devices. A Device is either a DevicePhone or a DeviceServer." provider: bunq method: GET path: "/device" encoding: json output: { type: "array" items: { type: "object" properties: { DeviceServer: { type: "object" required: ["description", "secret"] properties: { description: { type: "string" description: "The description of the DeviceServer. This is only for your own reference when reading the DeviceServer again." } permitted_ips: { type: "array" description: "An array of IPs (v4 or v6) this DeviceServer will be able to do calls from. These will be linked to the API key." items: { type: "string" } } secret: { type: "string" description: "The API key. You can request an API key in the bunq app." } } } } } } }