Skip to main content

Adjust Transaction

An Adjust Transaction call is used to change the capture amount of a CARD authorization (commonly for tips / incremental authorizations). The transaction must still be open (i.e., not settled) and the new amount must be within network-allowed limits.


Resource Access

Production (api.ahrvo.network)

POST https://api.ahrvo.network/banking/us2/v1/transaction/id/{transactionId}/adjust

Staging (gateway.ahrvo.network)

POST https://gateway.ahrvo.network/banking/us2/v1/transaction/id/{transactionId}/adjust

Request Body Parameters

AttributeRequiredNotes
amountYesNew total amount to capture. Provide as a string with up to two decimal places (e.g., "10.00").

Sample Request — Adjust CARD Transaction Amount
POST /banking/us2/v1/transaction/id/123456/adjust HTTP/1.1
Host: <hostname>
Authorization: Bearer <JWT token>
x-api-key: {apiKey}
Content-Type: application/json
{
"amount": "10.00"
}

Sample Response
HTTP/1.1 204 No Content

End of Section — Adjust Transaction