Allow to select picks for disassembly through the API
Through the UI when performing a disassembly, we are able to update the quantity for the autopick before authorizing.
I'm aware after authorizing the picks cannot be changed.
This is the flow we would use through the API:
- Create a disassembly
- Select location
- Select SKU
- Quantity to disassemble
- autopick
- change the quantity of the picks for the ones we need
- authorize
Image of how we would change the quantity.
Now, we need to operate that workflow using your API.
Unfortunately, on POST there is no properties that allows us to change the quantities.
As well on POST of a disassembly, we can only set it to "WORK IN PROGRESS",
This authorizes the disassembly and we then have no way of changing the quantity.
The workflow we use for the API:
POST https://inventory.dearsystems.com/ExternalApi/v2/disassembly{Status: WORK IN PROGRESS, Quantity: 6, etc}This creates a disassembly with autopick done - and no way of changing it.What we need are these steps:
1. Create a disassembly DRAFT
2. Retrieve autopick items
3. Set quantity
4. Update status to WORK IN PROGRESS
We would like to have the same option as we did in step 6.
Suggestion:
1. autopick
2. save as draft
3. allows the user to update the quantity
This workflow should be reproducible through the API.