Skip to main content
POST
/
customers
/
{customer_id}
/
ach-mandates
Create an ACH mandate
curl --request POST \
  --url https://commerce1.on-hellgate.dev/customers/{customer_id}/ach-mandates \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "account_holder": "<string>",
  "account_number": "<string>",
  "account_type": "<string>",
  "routing_number": "<string>",
  "country_code": "<string>",
  "email": "<string>"
}
'
{
  "account_holder": "<string>",
  "account_number": "<string>",
  "account_type": "<string>",
  "country_code": "<string>",
  "email": "<string>",
  "routing_number": "<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

account_holder
string
required
account_number
string
required
account_type
string
required
routing_number
string
required
country_code
string
email
string

Response

Success

account_holder
string
account_number
string
account_type
string
country_code
string
email
string
routing_number
string
status
string
token
string