action clearblade_get_systems_for_dev { label: "Get Systems for a developer" description: "Get the list of systems the developer has access to" provider: clearblade method: GET path: "/admin/systems/{devEmail}" encoding: json input: { type: "object" properties: { "ClearBlade-DevToken": { type: "string" } devEmail: { type: "string" } } required: ["ClearBlade-DevToken", "devEmail"] additionalProperties: false } output: { type: "object" additionalProperties: true } }