This endpoint allows you to retrieve a list of all delivery challans based on specific filter criteria, such as date range, delivery status, or other relevant parameters.
The response will return a list of delivery challans matching the specified filters, including detailed information about each delivery challan, such as the challan number, items, delivery address, and associated transaction details.
Request
Authorization
Add parameter in header
ApiKey
Example:
ApiKey: ********************
Query Params
start_date
stringÂ
required
The start date of the financial year (DD-MM-YYYY).
Example:
01-04-2024
end_date
stringÂ
required
The end date of the financial year (DD-MM-YYYY).
Example:
31-03-2025
party_id
integerÂ
optional
The unique identifier (ID) of the party used to filter transactions by party.
Example:
1
status
stringÂ
optional
The status with possible values: Open, Fully Invoiced, or Partially Invoiced. Used to filter based on the current status.
Example:
Open
limit
integerÂ
optional
The limit specifies the number of records to retrieve, e.g., limit=25 returns 25 records.
Example:
25
skip
integerÂ
optional
The skip query parameter determines how many records to skip from the start, e.g., skip=10 ignores the first 10 records and fetches the rest.
Example:
10
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
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;'
Responses
🟢200List of Transactions
application/json
Body
data
array [object {7}]Â
required
transaction_id
integerÂ
required
A unique identifier for the delivery challan transaction.
party_name
stringÂ
required
The name of the business or individual for whom the delivery challan is generated.
challan_number
integerÂ
required
A unique identifier for the challan with the prefix and stufix.
challan_date
stringÂ
required
The date when the delivery challan was created.
quantity
string  | nullÂ
required
Indicates the number of items being delivered in the transaction.
status
stringÂ
required
Indicates the current state of the delivery challan.
transaction_type
stringÂ
required
Specifies the type of transaction, in this case, an Delivery Challan.