action clicksend_get_price { label: "Get Price" description: "" provider: clicksend method: POST path: "/mms/price" encoding: json input: { type: "object" required: ["body", "media_file", "subject", "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)." } from_email: { type: "string" description: "An email address where the reply should be emailed to. If omitted, the reply will be emailed back to the user who sent the outgoing SMS." } list_id: { type: "number" description: "Your list ID if sending to a whole list. Can be used instead of 'to'." } media_file: { type: "string" description: "Media file you want to send." } 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#'." } subject: { type: "string" description: "Subject line. Maximum 20 characters." } 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 } }