action sakari_campaigns_remove { label: "Deletes a campaign" provider: sakari method: DELETE path: "/v1/accounts/{accountId}/campaigns/{campaignId}" encoding: json input: { type: "object" properties: { campaignId: { type: "string" } } required: ["campaignId"] additionalProperties: false } output: { type: "object" properties: { success: { type: "boolean" } } } }