Mandates API
Create mandate
Create a mandate for a specific customer. Mandates allow you to charge a customer's card, PayPal account or bank account recurrently.
It is only possible to create mandates for IBANs and PayPal billing agreements with this endpoint. To create mandates for cards, your customers need to perform a 'first payment' with their card.
post/v2/customers/{customerId}/mandates
Headers
idempotency-keystring
Example:123e4567-e89b-12d3-a456-426
A unique key to ensure idempotent requests. This key should be a UUID v4 string.
Request body
Example request
{
"resource": "mandate",
"id": "mdt_5B8cwPMGnU",
"mode": "live",
"method": "directdebit",
"consumerName": "John Doe",
"consumerAccount": "NL55INGB0000000000",
"consumerBic": "BANKBIC",
"consumerEmail": "example@email.com",
"details": {
"consumerName": "John Doe",
"consumerAccount": "NL55INGB0000000000",
"consumerBic": "BANKBIC",
"cardHolder": "John Doe",
"cardExpiryDate": "2025-01-01",
"cardLabel": "Visa",
"cardFingerprint": "d3290e932k02f"
},
"signatureDate": "2025-01-01",
"mandateReference": "ID-1023892",
"paypalBillingAgreementId": "B-12A34567B8901234CD",
"payPalVaultId": "8kk8451t",
"scopes": [
"customer-present"
],
"status": "valid",
"customerId": "cst_5B8cwPMGnU",
"createdAt": "2024-03-20T09:13:37+00:00",
"_links": {
"self": {
"href": "https://...",
"type": "application/hal+json"
},
"customer": {
"href": "https://...",
"type": "application/hal+json"
},
"documentation": {
"href": "https://...",
"type": "application/hal+json"
}
}
}Response
The newly created mandate object.