action clearblade_get_message_history { label: "MESSAGING - Get history" description: "Returns the message history for a single topic. Does not honor wildcards." provider: clearblade method: GET path: "/api/v/1/message/{systemKey}" encoding: json input: { type: "object" properties: { "ClearBlade-UserToken": { type: "string" } count: { type: "string" } last: { type: "string" } start: { type: "string" } stop: { type: "string" } systemKey: { type: "string" } topic: { type: "string" } } required: ["ClearBlade-UserToken", "count", "systemKey", "topic"] additionalProperties: false } output: { type: "object" additionalProperties: true } }