Skip to content

Return Receipt Reports

Retrieve return receipt records for a specified time range to support stock reconciliation processes.

Direction Host → WMS

HTTP Method GET

Path /return-receipt/{dateStart}/{dateEnd}/{startIndex}/{endIndex}

  • dateStart (string) - Start date for the report range
  • dateEnd (string) - End date for the report range
  • startIndex (integer) - Starting index for pagination
  • endIndex (integer) - Ending index for pagination

200: Returns a collection of ReturnReceipt objects

[
{
"rsNumber": "RS-2024-001234",
"returnReceiptIssuedTime": "2024-01-25T14:00:00",
"productLines": [
{
"productId": "PROD-ABC123",
"externalProductReference": "EXT-REF-001",
"stockOwner": "OWNER_A",
"quantity": 1,
"status": "GOOD"
}
]
}
]