action clearblade_get_all_deployments { label: "DEPLOYMENTS - Gets all deployment names and descriptions for a system" description: "## Description:\nGets all deployment names and descriptions for a system\n\n### Query:\n```json\n{\"PAGESIZE\":int,\"PAGENUM\":int,\"FILTERS\":[[{\"EQ\":[{\"valueType\":\"value\"}]}]],\"SORT\":[{\"DESC\":\"value\"}]}\n```\n\n### Example:\n\n```json\n {\"PAGESIZE\":0,\"PAGENUM\":0,\"SORT\":[{\"DESC\":\"name\"}]}\n" provider: clearblade method: GET path: "/api/v/3/{systemKey}/deployments" encoding: json input: { type: "object" properties: { "ClearBlade-UserToken": { type: "string" } query: { type: "string" } systemKey: { type: "string" } } required: ["ClearBlade-UserToken", "systemKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }