action sakari_campaigns_create { label: "Create campaign" provider: sakari method: POST path: "/v1/accounts/{accountId}/campaigns" encoding: json input: { type: "object" properties: { filters: { type: "object" properties: { attributes: { type: "array" items: { type: "string" } } contacts: { type: "array" items: { type: "string" } } tags: { type: "array" items: { type: "string" } } } } template: { type: "string" } trigger: { type: "object" properties: { code: { type: "string" description: "Campaign type specifies how it sources contacts and what event triggers its execution Sort order\n * `M` - Manual\n * `S` - Scheduled\n * `FU` - File Upload\n" enum: ["M", "S", "FU"] } } } } } output: { type: "object" properties: { data: { type: "object" properties: { id: { type: "string" } } } success: { type: "boolean" } } } }