Checking Payment Status

GET /v1/payments/card/status/{id}

Use this endpoint to retrieve the current status of a specific card transaction. This is a read-only operation
that returns the latest known status of the payment.

  • {id} path parameter: The unique transactionId of the payment you want to check. This is the ID
    returned in the response when the transaction was initiated (or provided in the webhook callback).

A successful request returns a JSON object with at least the transaction’s identifier and status.

For example:

{
"transactionId": "733609401625775730",
"transactionStatus": "SUCCEED"
}

Additional fields may be present if applicable (for instance, a declineCode if the status is "FAILED" ).
This endpoint is useful if you need to poll for a result or verify the final status in case your webhook was not
received.