v1
latestOpenAPI 3.0.32026-07-24148824715.6 KBTransactions
Make a decision on a held transaction
When a transaction is held (evaluation_outcome=HOLD), a decision can be made to either release or reject the transaction. This decision will be recorded in the review_decision field and sent as a webhook, if configured. This endpoint cannot be used for transactions that are not held.
post/v3/transactions/{identifier}/review
Path parameters
identifierstring uuid required
Our identifier for the transaction.
Example:01966d5b-e4fa-7b60-a2d7-5b5225fbd39a
Our identifier for the transaction.
Request body
Example request
{
"review_decision": "RELEASE"
}Response
Review decision created
Example response
{
"account_identifier": "0195fb35-4793-7bb5-8042-e4371640d176",
"created_at": "2025-04-03T03:32:00.000Z",
"created_by": "0195fb35-4793-7bb5-8042-e4371640d176",
"review_decision": "RELEASE"
}