action clicksend_create_new_campaign { label: "Create New Campaign" description: "Create new direct mail campaign." provider: clicksend method: POST path: "/post/direct-mail/campaigns/send" encoding: json input: { type: "object" required: ["file_urls", "name", "size"] properties: { areas: { type: "array" description: "List of location where you want to send your campaign, and the quantity per location." items: { type: "object" } } file_urls: { type: "array" description: "Campaign file urls. You can submit max 2 file urls." items: { type: "object" } } name: { type: "string" description: "Campaign name." } 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)." } size: { type: "string" description: "Campaign file size. It can be A5 or DL." } source: { type: "string" description: "Your method of sending e.g. 'wordpress', 'php', 'c#'." } } } output: { type: "object" additionalProperties: true } }