Education Fee Status Check

Retrieve the current status of an education fee payment by using its client reference ID.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Retrieve the current status of an education fee payment by sending its client_referenceId to this endpoint.

Prerequisites

  1. Get your client-id and client-secret from AeronPay.
  2. Configure your HTTP client to send JSON requests with content-Type: application/json.
  3. Store the client_referenceId that your system used when it created the education fee payment.

Required headers

HeaderTypeRequiredDescription
client-idstringYesUnique client ID provided by AeronPay.
client-secretstringYesUnique client secret provided by AeronPay.
content-TypestringYesSet to application/json.

Request body

ParameterTypeRequiredDescription
client_referenceIdstringYesUnique payment reference generated by your system when you created the education fee payment.

Sample request body

{
  "client_referenceId": "EDU-202edd60926-0001"
}

Pending response

A 201 response with status set to PENDING means AeronPay retrieved the payment status and settlement has not completed. Store the transactionId and continue to treat the payment as unsettled until you receive a final settlement status.

{
  "status": "PENDING",
  "statusCode": "201",
  "message": "Education fee payment status retrieved.",
  "data": {
    "transactionId": "ARNPY2609261347224173",
    "client_referenceId": "EDU-202edd60926-0001",
    "amount": "10.00",
    "charge": "0.00",
    "totalDebit": "10.00",
    "currency": "INR",
    "transferMode": "imps",
    "settlementCycle": "T+1",
    "acceptedAt": "2026-09-26T08:17:22+00:00",
    "settlementEligibleAt": "2026-09-27T08:17:22+00:00",
    "processorReference": null,
    "utr": null,
    "failureCode": null,
    "replayed": false
  }
}

Troubleshooting

  • Send the exact client_referenceId used when you created the payment.
  • Treat a PENDING payment as unsettled. Do not credit, close, or mark the payment as successful until you receive its final settlement status.
  • Verify that your request includes client-id, client-secret, and content-Type: application/json.
Body Params
string
required

Unique payment reference generated by your system when you created the education fee payment.

Headers
string
required

Unique client ID provided by AeronPay.

string
required

Unique client secret provided by AeronPay.

Responses

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json