This endpoint allows you to retrieve a list of income debit note transactions based on specified filter criteria, such as date range, ledger ID, or payment status.
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/income-debit-notes?start_date=01-04-2023&end_date=31-03-2024&party_id=1&status=1&limit=25&skip=10' \
--header'ApiKey;'
Responses
🟢200List of Transactions
application/json
Body
data
array [object {9}]Â
required
transaction_id
integerÂ
required
A unique identifier for the income debit note transaction.
party_name
stringÂ
required
Represents the name of the party (customer/supplier) associated with the debit note.
party_id
integerÂ
required
A unique ID assigned to the party in the system.
phone_no
string  | nullÂ
required
Stores the contact number of the associated party.
invoice_number
stringÂ
required
A unique identifier for the debit note invoice with prefix and stufix.
invoice_amount
numberÂ
required
The total amount for which the debit note is issued.
payment_status
stringÂ
required
Indicates the current payment status of the debit note.
transaction_type
stringÂ
required
Specifies the type of transaction, which is "Income Dr. Note".
date
stringÂ
required
The date when the debit note was created or issued.
success
booleanÂ
required
message
stringÂ
required
Example
{"data":[{"transaction_id":1,"party_name":"Bhairav Impex","party_id":1,"phone_no":null,"invoice_number":"DN2","invoice_amount":1117,"payment_status":"Unpaid","transaction_type":"Income Dr. Note","date":"19-01-2024"},{"transaction_id":2,"party_name":"Red Entertainment Private Limited","party_id":2,"phone_no":"919033280608","invoice_number":"1","invoice_amount":40000,"payment_status":"Unpaid","transaction_type":"Income Dr. Note","date":"19-06-2023"}],"success":true,"message":"Income Debit Note transaction retrieved successfully."}