GET
request to fetch expense credit note transaction data. Since it does not require a request body, users can simply call the endpoint with query parameters to retrieve the necessary information.ApiKey: ********************
curl --location --request GET 'https://app.hisabkitab.co/third-party/expense-credit-note?start_date=01-04-2024&end_date=31-03-2025&party_id=1&status=1&limit=25&skip=0' \
--header 'ApiKey: <api-key>'
{
"data": [
{
"transaction_id": 1,
"party_name": "Armaan Shah",
"party_id": 1,
"phone_no": null,
"invoice_number": "3",
"invoice_amount": 14511,
"payment_status": "Paid",
"transaction_type": "Expense Cr. Note",
"date": "07-10-2024"
},
{
"transaction_id": 2,
"party_name": "VISHNU ENTERPRISE",
"party_id": 2,
"phone_no": null,
"invoice_number": "2",
"invoice_amount": 28979,
"payment_status": "Unpaid",
"transaction_type": "Expense Cr. Note",
"date": "10-05-2024"
}
],
"success": true,
"message": "Expense Credit Note transactions retrieved successfully."
}