Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"firstName": "John",
"lastName": "Wick",
"phone": "+1 818-777-7777",
"email": "john@wick.com",
"address1": "26520 Agoura Road 1st Floor",
"address2": "",
"city": "CALABASAS",
"state": "CA",
"zipCode": "91302",
"accountName": "John Wick",
"accountNumber": "134567890",
"accountType": "Checking",
"routingNumber": "223456789",
"dba": {
"id": "9"
}
}
Request Code Samples
curl --location --request POST '/api/ach/customer' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"firstName": "John",
"lastName": "Wick",
"phone": "+1 818-777-7777",
"email": "john@wick.com",
"address1": "26520 Agoura Road 1st Floor",
"address2": "",
"city": "CALABASAS",
"state": "CA",
"zipCode": "91302",
"accountName": "John Wick",
"accountNumber": "134567890",
"accountType": "Checking",
"routingNumber": "223456789",
"dba": {
"id": "9"
}
}'
Responses
application/json {
"id": "46",
"firstName": "John",
"lastName": "Smith",
"phone": "+1 818-777-7777",
"email": "john@wick.com",
"address1": "123 Agoura Road 1st Floor",
"address2": null,
"city": "CALABASAS",
"state": "CA",
"zipCode": "91302",
"identifier": "777",
"dba": {
"id": "9"
},
"accounts": [
{
"id": 32,
"name": "John Wick",
"type": "Checking",
"accountNumber": "******7890",
"routingNumber": "123456789"
}
]
}
Modified at 2025-08-09 05:39:41