🌙 Appearance
Get payment status (Admin API)
GET
/payment-status/{transaction_id}
Check the status of a payment transaction using admin API key authentication. This endpoint is identical to the public payment status endpoint but requires API key authentication.
Authorizations
bearerAuth
API key must be provided in the Authorization header as: Bearer
TypeHTTP (bearer)
Parameters
Path Parameters
transaction_id*
The unique identifier of the transaction
Typestring
RequiredFormat
"uuid"Responses
Payment status retrieved successfully
application/json
JSON
{
"success": true,
"status": "string",
"transaction_id": "string",
"amount": 0,
"currency": "string",
"provider": "string",
"email": "string",
"redirect_url": "string",
"paid_on": "string",
"value_coin": 0,
"coin": "string",
"txid_in": "string",
"txid_out": "string",
"parent_transaction_id": "string"
}