action clearblade_get_topics { label: "MESSAGING - Gets list of topics" description: "## Description:\nReturns the list of topics.\n### Query Structure:\n```json\n{\"PAGESIZE\":int,\"PAGENUM\":int,\"FILTERS\":[[{\"_REPLACE_WITH_OPERATOR_\":[{\"valueType\":\"value\"}]}]], \"SORT\":[{\"DESC\":\"value\"}]}\n```\n\n ### Example:\n\n```json\n{\"FILTERS\":[[{\"NEQ\":[{\"concurrency\":0}]}]],\"PAGESIZE\": ,\"PAGENUM\":1}\n```\n" provider: clearblade method: GET path: "/api/v/4/message/{systemKey}/topics" encoding: json input: { type: "object" properties: { "ClearBlade-DevToken": { type: "string" } query: { type: "string" } systemKey: { type: "string" } } required: ["ClearBlade-DevToken", "systemKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }