Confirm transaction status
curl --request GET \
--url https://adapter.cepta.co/api/v1/pay/confirm-status \
--header 'X-Access-Key: <api-key>' \
--header 'X-Access-Signature: <api-key>' \
--header 'X-Access-Ts: <api-key>'{
"status": true,
"message": "<string>",
"data": {
"responseCode": "<string>",
"responseDescription": "<string>",
"transactionReference": "<string>",
"amount": 123,
"remittanceAmount": 123,
"customerName": "<string>",
"bank": "<string>",
"status": "<string>",
"submitTimeUtc": "<string>",
"clientReferenceInformation": "<string>",
"accountName": "<string>",
"accountNo": "<string>",
"maskedPan": "<string>",
"cardExpiry": "<string>",
"transactionId": "<string>",
"completedTimeUtc": "<string>",
"errors": [
{
"errorCode": "<string>",
"message": "<string>"
}
]
}
}Authorizations
Access key from Dashboard
HMAC-SHA256 signature (hex lowercase)
Unix timestamp in seconds (UTC) as a string
Query Parameters
Unique identifier for the transaction
Response
Indicates if the request was successful.
Descriptive message about the request result.
Response code from the payment processor
Response description from the payment processor
Unique identifier for the transaction
Amount of the transaction
Amount to be remitted to the merchant
Name of the customer who made the payment
Bank of the customer who made the payment
Current status of the transaction
Time the transaction was submitted
Client reference information
Name of the account holder
Account number used, partially masked
Masked card number (PAN)
Card expiry date
Unique identifier for the transaction
Time the transaction was completed
curl --request GET \
--url https://adapter.cepta.co/api/v1/pay/confirm-status \
--header 'X-Access-Key: <api-key>' \
--header 'X-Access-Signature: <api-key>' \
--header 'X-Access-Ts: <api-key>'{
"status": true,
"message": "<string>",
"data": {
"responseCode": "<string>",
"responseDescription": "<string>",
"transactionReference": "<string>",
"amount": 123,
"remittanceAmount": 123,
"customerName": "<string>",
"bank": "<string>",
"status": "<string>",
"submitTimeUtc": "<string>",
"clientReferenceInformation": "<string>",
"accountName": "<string>",
"accountNo": "<string>",
"maskedPan": "<string>",
"cardExpiry": "<string>",
"transactionId": "<string>",
"completedTimeUtc": "<string>",
"errors": [
{
"errorCode": "<string>",
"message": "<string>"
}
]
}
}