My Orders

Use this API to get your Orders/Transaction List.

 

HTTP REQUEST

GET /transaction/list

QUERY STRING PARAMETERS

Field Type Description
firstRecord
required
integer First record to return. Default: 1
count
required
integer Number of records to be returned starting from the first record
Default: 20, Max count limit: 50
{
    "success": true,
    "data": {
        "response": {
            "acknowledgement": "Success",
            "data": {
                "transactionList": [
                    {
                        "transactionId": 300,
                        "date": "2023-02-17 12:28:15",
                        "courseTitle": "Effective Hiring Practices",
                        "courseCode": "50027",
                        "transactionRefNo": "pay_LHVlnmMprpLTF0",
                        "orderID": "1396465863",
                        "amount": "449",
                        "currency": "INR"
                    }
                ],
                "totalRecords": 1
            },
            "error": {
                "code": "",
                "internal_message": "",
                "moreInfo": []
            }
        }
    }
}
Field Type Description
transactionId int Transacton ID
date string Date of transaction
courseTitle string Course name
courseCode string Course code
transactionRefNo string Reference code
orderID string Order ID
amount string Amount Paid
INR string Currency Paid
Code Description
1034 ‘Invalid firstRecord’
1035 ‘Invalid count’

For general error details, click here.