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