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