Get the results of the cycle count report
Body·
application/json
- Type: string | nullFormat: uuidclient
Partner Id The client partner to filter by
- Type: stringFormat: datedate
From The start date in the cycle count date range
- Type: stringFormat: datedate
To The end date in the cycle count date range
- Type: boolean | nullis
Pickface If the report should show:
- When not set: Shows all locations
- When set to true: Shows only pickface locations
- When set to false: Shows only non-pickface location
- Type: string | nullFormat: uuidpartner
Product Id The product to filter by
- Type: booleanshow
Only Variance If the report should show only variance
- Type: string | nullFormat: uuidwarehouse
Id The warehouse to filter by
Responses
- application/json
Request Example for post/v1/reports/cycle-count
curl https://api.consignlyhq.com/v1/reports/cycle-count \
--request POST \
--header 'Content-Type: application/json' \
--data '{
"dateFrom": "date (YYYY-MM-DD)",
"dateTo": "date (YYYY-MM-DD)",
"warehouseId": null,
"isPickface": null,
"clientPartnerId": null,
"partnerProductId": null,
"showOnlyVariance": true
}'
[
{
"countedDateTime": "datetime (YYYY-MM-DDTHH:MM:SSZ)",
"countedByName": null,
"clientName": null,
"productCode": null,
"productName": null,
"warehouseName": null,
"warehouseLocationName": null,
"unitTypeName": null,
"batch": null,
"bestBeforeDate": "date (YYYY-MM-DD)",
"expiryDate": "date (YYYY-MM-DD)",
"packagingDate": "date (YYYY-MM-DD)",
"productionDate": "date (YYYY-MM-DD)",
"sellByDate": "date (YYYY-MM-DD)",
"attributes": [
{
"name": null,
"description": null
}
],
"expectedQuantity": 1,
"countedQuantity": 1,
"quantityVariance": 1
}
]