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