action fire_activate_mandate { label: "Activate a direct debit mandate" description: "This endpoint can only be used to activate a direct debit mandate when it is in the status REJECT_REQUESTED (even if the account has direct debits disabled). This action will also enable the account for direct debits if it was previously set to be disabled.\nThe permision needed to access this endpoint is PERM_BUSINESS_POST_MANDATE_ACTIVATE\n" provider: fire method: POST path: "/v1/mandates/{mandateUuid}/activate" encoding: json input: { type: "object" properties: { mandateUuid: { type: "string" description: "The uuid of the mandate to activate." } } required: ["mandateUuid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }