action fire_reject_direct_debit { label: "Reject a direct debit payment" description: "This endpoint allows you to reject a direct debit payment where the status is still set to RECEIVED.\nPermission name PERM_BUSINESS_POST_DIRECT_DEBIT_REJECT\n" provider: fire method: POST path: "/v1/directdebits/{directDebitUuid}/reject" encoding: json input: { type: "object" properties: { directDebitUuid: { type: "string" description: "The uuid of the direct debit to retrieve." } } required: ["directDebitUuid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }