action clicksend_post_automations_email_receipt { label: "Create a New Rule" description: "" provider: clicksend method: POST path: "/automations/email/receipt" encoding: json input: { type: "object" required: ["action", "action_address", "enabled", "match_type", "rule_name"] properties: { action: { type: "string" description: "Action." } action_address: { type: "string" description: "Action Address." } enabled: { type: "number" description: "Enabled." } match_type: { type: "number" description: "Match Type. 0=All reports." } rule_name: { type: "string" description: "Rule Name." } } } output: { type: "object" additionalProperties: true } }