v1

latestOpenAPI 3.0.32026-07-24148824715.6 KB
Transactions

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

review_decision'RELEASE' | 'REJECT' required

Represents the states of review decision

Example request

{
  "review_decision": "RELEASE"
}

Response

Review decision created

account_identifierstring uuid required

Our unique identifier for customer that the Transaction is associated with. We will populate this after mapping your customer identifier to ours as we process your Transaction.

created_atstring date-time required

The timestamp of the decision.

created_bystring uuid required

The user who made the decision.

review_decision'RELEASE' | 'REJECT' required

Represents the states of review decision

transaction_identifierstring uuid nullable

Our unique identifier for your Transaction. We generate this when we process your Transaction and you are not able to specify it.

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"
}