Charge API
Confirm transaction status
Charge API
Confirm transaction status
GET
/
api
/
v1
/
pay
/
confirm-status
curl --request GET \
--url https://adapter.cepta.co/api/v1/pay/confirm-status \
--header 'Authorization: <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
Authorization header with the <SECRET_KEY> value.
Query Parameters
Unique identifier for the transaction
Response
200
text/plain
Success
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 'Authorization: <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>"
}
]
}
}