action clicksend_get_mms_history { label: "Get MMS History" description: "" provider: clicksend method: GET path: "/mms/history?q={q}&order_by={order_by}&date_from={date_from}&date_to={date_to}" encoding: json input: { type: "object" properties: { date_from: { type: "string" } date_to: { type: "string" } order_by: { type: "string" } q: { type: "string" } } required: ["date_from", "date_to", "order_by", "q"] additionalProperties: false } output: { type: "object" additionalProperties: true } }