| Field | Required | Description |
|---|---|---|
| api-token | Yes | Authentication token provided by VasyERP |
| branchId | Yes | Branch ID(s) for which stock transfer data is required |
| fromDate | Yes | Start date in UTC format (ISO 8601) |
| toDate | Yes | End date in UTC format (ISO 8601) |
| limit | Yes | Number of records to retrieve |
| offset | Yes | Number of records to skip |
| fromBranch | No | Filter by source branch ID |
| toBranch | No | Filter by destination branch ID |
| status | No | Filter by transfer status |
| documentNumber | No | Filter by stock transfer document number |
curl --location '/api/v1/report/stock-transfer-item-register' \
--header 'api-token: {{.in-api-token}}' \
--header 'Content-Type: application/json' \
--data '{
"branchId": "24448",
"fromDate": "2026-03-31T18:30:00Z",
"toDate": "2027-03-31T23:59:59Z",
"fromBranch": 0,
"toBranch": 0,
"status": "",
"documentNumber": "",
"limit": 2,
"offset": 0
}'{
"status": true,
"message": "Stock Transfer Item Register",
"code": "200",
"response": {
"totalCount": 438,
"items": [
{
"stockTransferNo": 28,
"fromLocation": "Bhanushali Trading company",
"toLocation": "Bhavesh dot in franchise",
"transferDate": "2026-05-22T08:59:36.888371Z",
"transferInDate": null,
"documentNumber": "STF28",
"branchStatus": "open",
"productName": "Test Kaaju KAtli pack l",
"printName": "Test Kaaju KAtli pack",
"itemCode": "ITM2362",
"hsnCode": "",
"departmentName": "QA",
"categoryName": "Manual QA",
"brandName": "Quality Assurance",
"quantity": 1.0,
"unit": "PCS",
"value": 224.0,
"taxableValue": 213.33,
"mrp": 224.0,
"salePrice": 224.0,
"unitPrice": 224.0,
"taxPercentage": 5.0
},
{
"stockTransferNo": 28,
"fromLocation": "Bhanushali Trading company",
"toLocation": "Bhavesh dot in franchise",
"transferDate": "2026-05-22T08:59:36.888371Z",
"transferInDate": null,
"documentNumber": "STF28",
"branchStatus": "open",
"productName": "Recipe prod ",
"printName": "Recipe prod",
"itemCode": "RCP1404",
"hsnCode": "",
"departmentName": "Packed food",
"categoryName": "Chavana",
"brandName": "Balaji",
"quantity": 2.0,
"unit": "PCS",
"value": 56.010000000000005,
"taxableValue": 26.67,
"mrp": 28.0,
"salePrice": 28.0,
"unitPrice": 28.005000000000003,
"taxPercentage": 5.0
}
]
}
}