GET
request with the challan ID included in the URL to get delivery challan transactions.ApiKey: ********************
curl --location --request GET 'https://app.hisabkitab.co/third-party/delivery-challan-transactions?start_date=01-04-2024&end_date=31-03-2025&party_id=1&status=Open&limit=25&skip=10' \
--header 'ApiKey: <api-key>'
{
"data": [
{
"transaction_id": 1,
"party_name": "Ahana Dress Show Room",
"party_id": 1,
"challan_number": "bill no.12024-25",
"challan_date": "17-12-2024",
"quantity": 1,
"status": "Fully Invoiced",
"transaction_type": "Delivery Challan"
},
{
"transaction_id": 1,
"party_name": "Armaan Shah",
"party_id": 2,
"challan_number": "bill no.22024-25",
"challan_date": "09-10-2024",
"quantity": 3,
"status": "Open",
"transaction_type": "Delivery Challan"
},
],
"success": true,
"message": "Delivery transaction retrieved successfully."
}