action clearblade_get_edge_data_by_name { label: "Edge(name) - Get edge info" description: "Returns the data from the specified edge." provider: clearblade method: GET 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 } }