v1
latestOpenAPI 3.1.02026-07-24170121.2 MBRetrieve an ACH Charge
This endpoint retrieves detailed information for a specific ACH charge, identified by its unique id. It returns the charge’s current status, associated customer information, and any related return details.
get/v1/achcharges/{id}
Path parameters
idstring required
The unique identifier of the ACH charge you want to retrieve.
Query parameters
limitinteger
pageinteger
include'customer' | 'transaction_metadata' | 'returns'
<b>Possible Values:</b> customer, transaction_metadata, returns
Response
200
Example response
{
"data": {
"object": "ACHCharge",
"id": "9e7gdG89Dd3P1nG4",
"amount": 4058,
"created_by": "serviceuser1234@payarc.com",
"status": "settled",
"type": "debit",
"authorization_id": "309141995",
"validation_code": "1",
"successful": 1,
"response_message": "Validated",
"created_at": "2025-03-20T19:40:57.000000Z",
"updated_at": "2025-04-01T10:01:28.000000Z",
"sec_code": "CCD",
"bank_account": {
"data": {
"object": "BankAccount",
"id": "36Jd3P1nG4JKED5j",
"first_name": "null",
"last_name": "null",
"company_name": "Payarc Sales",
"account_type": "Business Checking",
"sec_code": "CCD",
"routing_number": "070324882",
"account_number": "******5588"
}
}
},
"meta": {
"include": [
"customer"
]
}
}