Skip to main content
POST
/
customers
/
{customer_id}
/
sepa-mandates
Create a SEPA mandate
curl --request POST \
  --url https://commerce1.on-hellgate.dev/customers/{customer_id}/sepa-mandates \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "bic": "<string>",
  "country_code": "<string>",
  "document": "<string>",
  "iban": "<string>",
  "mandate_name": "<string>",
  "method": "CORE",
  "reference": "<string>",
  "sequence_type": "<string>",
  "signed_on": "2023-12-25",
  "address": "<string>",
  "city": "<string>",
  "postal_code": "<string>"
}
'
{
  "address": "<string>",
  "bic": "<string>",
  "city": "<string>",
  "country_code": "<string>",
  "iban": "<string>",
  "mandate_name": "<string>",
  "method": "<string>",
  "postal_code": "<string>",
  "reference": "<string>",
  "sequence_type": "<string>",
  "signed_on": "<string>",
  "status": "<string>",
  "token": "<string>"
}

Authorizations

X-API-Key
string
header
required

Headers

X-Account-ID
string

Identifies the account. Required when authenticating via mTLS — omit when using an API key (account is inferred from the key).

Path Parameters

customer_id
string
required

Customer ID

Body

application/json

Body

bic
string
required
country_code
string
required
document
string
required
iban
string
required
mandate_name
string
required
method
enum<string>
required
Available options:
CORE,
B2B
reference
string
required
sequence_type
string
required
signed_on
string<date>
required
address
string
city
string
postal_code
string

Response

Success

address
string
bic
string
city
string
country_code
string
iban
string
mandate_name
string
method
string
postal_code
string
reference
string
sequence_type
string
signed_on
string
status
string
token
string