action clearblade_get_system_device { label: "DEVELOPER - Get device" description: "Retrieves information about the specified device." provider: clearblade method: GET path: "/admin/devices/{systemKey}/{name}" encoding: json input: { type: "object" properties: { "ClearBlade-DevToken": { type: "string" } name: { type: "string" } systemKey: { type: "string" } } required: ["ClearBlade-DevToken", "name", "systemKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }