Fetch all direct debit mandates based on parameters.
OK
Bad Request
Unauthorized
Forbidden
{- "content": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "uniqueReference": "string",
- "endUserId": "120e9d1f-8444-4b91-85e8-5b208615a3e5",
- "status": "AWAITING_ACTIVATION",
- "friendlyName": "string",
- "debtor": {
- "type": "PERSON",
- "name": "string",
- "bankingDetails": {
- "iban": "string",
- "bic": "string"
}, - "ledgerId": "a2873d47-59a8-4daf-a325-cb2c04557dd7"
}, - "recurring": true,
- "expirationDate": "2019-08-24",
- "updateDate": "2019-08-24T14:15:22Z",
- "creationDate": "2019-08-24T14:15:22Z"
}
], - "totalElements": 1,
- "page": 0,
- "pageSize": 0
}
Create a direct debit mandate. Once created, the mandate must be activated in order to be effective.
Created
Bad Request
Unauthorized
Forbidden
Conflict
{- "endUserId": "120e9d1f-8444-4b91-85e8-5b208615a3e5",
- "friendlyName": "string",
- "debtor": {
- "type": "PERSON",
- "name": "John Michael Doe",
- "bankingDetails": {
- "iban": "string",
- "bic": "string"
}
}, - "recurring": true,
- "expirationDate": "2019-08-24"
}
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
}
Cancel a direct debit mandate. This operation is irreversible.
OK
Bad Request
Unauthorized
Forbidden
Not Found
Conflict
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
}
Activate a direct debit mandate. You must complete debtor banking details before activating the mandate.
OK
Bad Request
Unauthorized
Forbidden
Not Found
Conflict
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
}
Get all information about a direct debit mandate using its ID.
OK
Bad Request
Unauthorized
Forbidden
Not Found
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "uniqueReference": "string",
- "endUserId": "120e9d1f-8444-4b91-85e8-5b208615a3e5",
- "status": "AWAITING_ACTIVATION",
- "friendlyName": "string",
- "debtor": {
- "type": "PERSON",
- "name": "string",
- "bankingDetails": {
- "iban": "string",
- "bic": "string"
}, - "ledgerId": "a2873d47-59a8-4daf-a325-cb2c04557dd7"
}, - "recurring": true,
- "expirationDate": "2019-08-24",
- "updateDate": "2019-08-24T14:15:22Z",
- "creationDate": "2019-08-24T14:15:22Z"
}
Update an existing direct debit mandate.
OK
Bad Request
Unauthorized
Forbidden
Not Found
Conflict
{- "friendlyName": "string",
- "debtor": {
- "bankingDetails": {
- "iban": "string",
- "bic": "string"
}
}, - "recurring": true,
- "expirationDate": "2019-08-24"
}
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
}