Skip to main content
GET
/
api
/
instntmny-local
/
transactions
/
status
/
{zeepay_id}
Get Status of Transaction
curl --request GET \
  --url https://test.digitaltermination.com/api/instntmny-local/transactions/status/{zeepay_id} \
  --header 'Authorization: Bearer <token>'
{
  "zeepay_id": 23456,
  "reference": "23453452",
  "status": "Sucess",
  "code": 200,
  "message": "Transaction Processed Successfully"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

zeepay_id
integer<int64>
required

The Zeepay ID of the transaction.

Example:

123456

Response

200 - application/json

The status of the transaction.

zeepay_id
integer

Message indicating successful transaction

Example:

23456

reference
string

Transaction reference

Example:

"23453452"

status
integer

The status

Example:

"Sucess"

code
number

Static response code indicating the status

Example:

200

message
string

This is a response message from the third party

Example:

"Transaction Processed Successfully"