action clearblade_create_new_edge { label: "EDGE - Create edge" description: "Creates a new edge in the specified system." provider: clearblade method: POST path: "/api/v/3/edges/{systemKey}/{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 } }