dba.id and settlement.id| Fields | Description | Type | Filterable |
|---|---|---|---|
| transaction | Transaction Object | Object | No |
| transaction.id | Transaction ID | Integer | Yes |
| transaction.type | Transaction Type debit, credit | ENUM | No |
| amount | Total Amount | Number | Yes |
| customerId | Customer ID | String | No |
| accountName | Account Name | String | Yes |
Authorization: Bearer ********************curl --location --request GET '/api/ach/settlements/<dbaId>/details/<settlementId>' \
--header 'Authorization: Bearer <token>'{
"items": [
{
"transaction": {
"id": 92297509,
"type": "credit"
},
"amount": "3500.00",
"customerId": "D1732A4527467",
"accountName": "Checking"
}
],
"_links": {
"self": {
"href": "https://zendashboard.com/api/ach/settlements/1732/details/88757?page=1"
},
"first": {
"href": "https://zendashboard.com/api/ach/settlements/1732/details/88757?page=1"
},
"last": {
"href": "https://zendashboard.com/api/ach/settlements/1732/details/88757?page=1"
}
},
"_meta": {
"totalCount": 1,
"pageCount": 1,
"currentPage": 1,
"perPage": 30
}
}