curl --request POST \
--url https://your.service.com/sepa-mandates \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"return_url": "<string>",
"data": {
"debit_method": "B2B",
"sequence_type": "ONE_OFF",
"debtor": {
"name": "<string>",
"email": "jsmith@example.com",
"iban": "<string>",
"bic": "<string>",
"address": {
"address_line": "<string>",
"city": "<string>",
"country_code": "<string>",
"postal_code": "<string>"
}
},
"extension": {
"signees": [
{
"email": "jsmith@example.com",
"name": "<string>"
}
]
}
}
}
'