post
https://sandbox-api-gtw.softpoint.io/api/locations//transactions/69E311F1-0C36-12B2-BC4B-02001720E1A8/void
Voids a previously created ACH transaction.
Request Headers
| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer YOUR_ACCESS_TOKEN |
| Content-Type | Yes | application/json |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
location_id | string | Yes | Identifier of the location. |
transaction_id | string | Yes | Identifier of the transaction to be voided. |
Request Body
No request body is required for this endpoint.
Response
200 — Success
If the request is successful, the transaction will be marked as void.
422 — Unprocessable Content
Returned when the request contains invalid data (for example, an amount below the minimum allowed).
{
"error": {
"code": 99183,
"name": "ach_422",
"message": "Unprocessable Content",
"details": {
"status": false,
"message": "The given data was invalid.",
"data": null,
"errors": {
"amount": [
"The amount must be at least 10 cents."
]
},
"error_code": null
}
}
}
