action clearblade_create_system_device { label: "DEVELOPER - Create device" description: "Creates a new device in the specified system." provider: clearblade method: POST 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 } }