| Field | Required | Description |
|---|---|---|
| api-token | Yes | Authentication token provided by VasyERP |
| branch_list | Yes | One or more Branch IDs separated by commas |
| from_date | Yes | Start date in UTC format (ISO 8601) |
| to_date | Yes | End date in UTC format (ISO 8601) |
| limit | Yes | Number of records to retrieve |
| offset | Yes | Number of records to skip |
curl --location '/api/v1/report/sales-item-register/invoice' \
--header 'api-token: {{.in-api-token}}' \
--header 'Content-Type: application/json' \
--data '{
"branch_list":"24448",
"limit":500,
"offset":0,
"from_date":"2025-04-01T00:00:00Z",
"to_date":"2026-03-31T00:00:00Z"
}'{
"status": true,
"message": "Sales Item Register List",
"code": "200",
"response": {
"totalCount": 2414,
"salesItemRegisterData": [
{
"receiptData": "Cash : 11",
"total": 11.0,
"flatDiscount": 0.0,
"billDiscount": 0.0,
"flatDiscountType": "percentage",
"billDiscountType": "percentage",
"mrpAmount": 10.5,
"branchId": 24448,
"salesNo": "ORD54",
"salesDate": "2025-12-26 15:14:32.259619+05:30",
"tcsAmount": 0.0,
"taxIncluded": true,
"type": "pos",
"orderType": "walkin",
"branchName": "my business",
"customerName": " ",
"mobNo": null,
"billingGstIn": null,
"productName": "TEST2",
"productType": "Finished",
"hsnCode": "",
"measurementCode": "TAB",
"categoryName": "Fresh",
"subCategoryName": null,
"subBrandName": null,
"brandName": "Cadbury",
"departmentName": "Food",
"itemCode": "TEST2",
"batchNo": "B206337349",
"purchasePrice": null,
"landingCost": 10.5,
"mrp": 10.5,
"taxExclusiveMrp": 10.0,
"price": 10.0,
"sellingPrice": 10.5,
"totalDiscount": 0.0,
"qty": 1.0,
"address": "Rahuri, Maharashtra ",
"basicValue": 10.0,
"otherDiscount": 0.0,
"discount": 0.0,
"itemTotalDiscount": 0.0,
"taxAmount": 0.5,
"cgst": 0.25,
"igst": 0.0,
"taxRate": 5.0,
"cessRate": 0.0,
"cessAmount": 0.0,
"netAmount": 10.5,
"profit": 0.0,
"employeeName": "New employ",
"createdBy": "New employ",
"productDescription": ""
},
{
"receiptData": "Cash : 11",
"total": 11.0,
"flatDiscount": 0.0,
"billDiscount": 0.0,
"flatDiscountType": "percentage",
"billDiscountType": "percentage",
"mrpAmount": 10.5,
"branchId": 24448,
"salesNo": "ORD55",
"salesDate": "2025-12-26 14:13:38.611662+05:30",
"tcsAmount": 0.0,
"taxIncluded": true,
"type": "pos",
"orderType": "walkin",
"branchName": "my business",
"customerName": " ",
"mobNo": null,
"billingGstIn": null,
"productName": "TEST2",
"productType": "Finished",
"hsnCode": "",
"measurementCode": "TAB",
"categoryName": "Fresh",
"subCategoryName": null,
"subBrandName": null,
"brandName": "Cadbury",
"departmentName": "Food",
"itemCode": "TEST2",
"batchNo": "B206337349",
"purchasePrice": null,
"landingCost": 10.5,
"mrp": 10.5,
"taxExclusiveMrp": 10.0,
"price": 10.0,
"sellingPrice": 10.5,
"totalDiscount": 0.0,
"qty": 1.0,
"address": "Rahuri, Maharashtra ",
"basicValue": 10.0,
"otherDiscount": 0.0,
"discount": 0.0,
"itemTotalDiscount": 0.0,
"taxAmount": 0.5,
"cgst": 0.25,
"igst": 0.0,
"taxRate": 5.0,
"cessRate": 0.0,
"cessAmount": 0.0,
"netAmount": 10.5,
"profit": 0.0,
"employeeName": null,
"createdBy": "my business",
"productDescription": null
}
]
}
}