action fire_cancel_mandate_by_uuid { label: "Cancel a direct debit mandate" description: "This endpoint allows you to cancel a direct debit mandate.\nThe permision needed to access this endpoint is PERM_BUSINESS_POST_MANDATE_CANCEL\n" provider: fire method: POST path: "/v1/mandates/{mandateUuid}/cancel" encoding: json input: { type: "object" properties: { mandateUuid: { type: "string" description: "The uuid of the mandate to cancel." } } required: ["mandateUuid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }