PUT
/
disbursements
/
single
/
review
cURL
curl -X PUT "https://api.onekhusa.com/sandbox/v1/disbursements/single/review" \
  --header "Authorization: Bearer your-jwt-token" \
  --header "Content-Type: application/json" \
  --header "X-Organisation-Id: FYH0NTVW0DXK" \
  --header "X-Merchant-Account-Number: 35253486" \
  --header "Accept-Language: en" \
  -d '{
    "merchantAccountNumber": 35253486,
    "transactionReferenceNumber": "TXN8J5T2Q1L0Z",
    "actionedBy": "admin@example.com"
  }'
"Transaction TXN8J5T2Q1L0Z has been reviewed successfully"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <Token>, where <Token> is your access token.

Headers

X-Organisation-Id
string
required

The organization identifier

X-Merchant-Account-Number
string
required

The merchant account number

Accept-Language
string
default:en

Preferred language for the response

Body

application/json
merchantAccountNumber
integer
required

The unique identifier of the merchant account (Required string length: 8)

Required range: 10000000 <= x <= 99999999
Example:

35253486

transactionReferenceNumber
string
required

The unique transaction reference number to review

Example:

"TXN8J5T2Q1L0Z"

actionedBy
string
required

The email adddress of the user reviewing the transaction

Maximum length: 60
Example:

"admin@example.com"

Response

200 - application/json

Success Response (200 OK) - Transaction reviewed successfully

The response is of type string.

Example:

"Transaction TXN8J5T2Q1L0Z has been reviewed successfully"