API

Fill Items by Order

Prep/Fill items for an Order either in a batch or individually.

To fill items by Order:

  • Fill in serial and non serial items, kits and parts.

  • Assign a container during fill.

  • Status(s) of all items will be synched to respective order upon closing the last Warehouse session

  • To close the session, invoke {/session/close} after completing all operations

POST

👉🏿

End Points:

POST /warehouse/orders/{orderID}/session/{sessionID}/fill

Request payload:

{
  "scandetails": [
    {
      "referencenumber": 0,
      "warehouseschedulelinerecordid": "string",
      "assetorproductid": "string",
      "qty": 0,
      "containerid": "string",
      "filloptions": {
        "autofill": true,
        "autoreturn": true,
        "onservicedue": "MarkQCNeedsService",
        "movetocurrentsite": true,
        "unfillonotherorder": true,
        "returnlost": true,
        "returnmissing": true,
        "fillprereturnservicedueassets": true
      }
    }
  ]
}

Response Payload and Error handling follows same as Warehouse Fill API, to know more click here.