action clicksend_post_sms_price { label: "Calculate Price" description: "" provider: clicksend method: POST path: "/sms/price" encoding: json input: { type: "object" required: ["body", "to"] properties: { body: { type: "string" description: "Your message." } country: { type: "string" description: "Recipient country." } custom_string: { type: "string" description: "Your reference. Will be passed back with all replies and delivery reports." } from: { type: "string" description: "Your sender id - [more info](http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number)." } list_id: { type: "number" description: "Your list ID if sending to a whole list. Can be used instead of 'to'." } schedule: { type: "number" description: "Leave blank for immediate delivery. Your schedule time as a [unix timestamp](http://help.clicksend.com/what-is-a-unix-timestamp)." } source: { type: "string" description: "Your method of sending e.g. 'wordpress', 'php', 'c#'." } to: { type: "string" description: "Recipient number in E.164 format or local format ([more info](https://help.clicksend.com/SMS/what-format-does-the-recipient-phone-number-need-to-be-in))." } } } output: { type: "object" additionalProperties: true } }