action clicksend_get_fax_history { label: "Get Fax History" description: "Get a list of Fax History." provider: clicksend method: GET path: "/fax/history?date_from={date_from}&date_to={date_to}&q={q}&order_by={order_by}" encoding: json input: { type: "object" properties: { date_from: { type: "number" } date_to: { type: "number" } order_by: { type: "string" } q: { type: "string" } } required: ["date_from", "date_to", "order_by", "q"] additionalProperties: false } output: { type: "object" additionalProperties: true } }