POST
/
get_transaction_status
Get Transaction Status
curl --request POST \
  --url https://{api_host}/get_transaction_status \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "service_id": 123,
  "transaction_id": "<string>"
}'
{
  "response_message": "<string>",
  "response_code": "<string>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
service_id
integer

Your unique service identifier. This helps us locate the correct account for the transaction.

transaction_id
string

The unique identifier for the transaction you want to check. This is the same ID you provided when initiating the payment.

Response

200 - application/json

Transaction status retrieved successfully. The response includes detailed information about the current state of the transaction.

response_message
string

A detailed message about the current status of the transaction, including any relevant information for your records.

response_code
string

A code indicating the current status of the transaction. Refer to our response code documentation to interpret this code.