Skip to main content
GET
/
v1
/
global-payout
/
transactions
/
{transactionId}
cURL
curl --request GET \
  --url https://api.nomba.com/v1/global-payout/transactions/{transactionId} \
  --header 'Authorization: <authorization>' \
  --header 'accountId: <accountid>'
{
  "code": "00",
  "description": "Successful",
  "data": {
    "transactionId": "01kj9ssfwqd4a97jhdx65gmyqy",
    "status": "PROCESSING",
    "coreStatus": "PAYMENT_SUCCESSFUL",
    "type": "TRANSFER",
    "createdAt": "2026-03-13T09:15:57.161946"
  }
}

Headers

Authorization
string
required

Bearer token for authentication.

Example:

"Bearer <token>"

accountId
string
required

The parent accountId of the business.

Example:

"890022ce-bae0-45c1-9b9d-ee7872e6ca27"

Path Parameters

transactionId
string
required

The wtTransactionId returned when the transfer was authorized.

Example:

"01kj9ssfwqd4a97jhdx65gmyqy"

Response

200 - application/json

Transaction retrieved successfully.

code
string
Example:

"00"

description
string
Example:

"Successful"

data
object