action clearblade_get_connected_device_info { label: "DEVICES - Get information for a connected device" description: "Returns the connection information of the device." provider: clearblade method: GET path: "/api/v/4/devices/{systemKey}/connections/{name}" encoding: json input: { type: "object" properties: { "ClearBlade-UserToken": { type: "string" } name: { type: "string" } systemKey: { type: "string" } } required: ["ClearBlade-UserToken", "name", "systemKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }