A:
type
field is used as an identifier for each of the discounts, fees, and taxes.
A:
.csv
file with all the inventory details.POST/api/v2/inventory/aws/upload-url
to create an URL.csv
file to the created URL generated using the second point.A: There are two types of counters- Base Counter and Virtual Counter. Base counters refer to onHand
, Allocated
, Shipped
, and any other custom counters that are created using the counter endpoint. Virtual counter refers to the availableToPurchase
counter.
Allocated
as it is automatically calculated during order workflow )using:
PUT/api/v2/inventory/adjustment
to adjust the counter quantity. Using this endpoint, you can only adjust the counter quantity, not other inventory details, such as type, lead time, and so on. Based on the counter quantity you mention in the payload while calling the endpoint, the original counter quantity is increased or decreased. For example, if the original counter quantity is 100 (that you mention while creating the counter), and mention the counter quantity as ‘+10’ or ‘-10’ in the payload while calling the adjustment endpoint, the original counter quantity is adjusted by 110 (100+10) or 90 (100-10) respectively.PUT/api/v2/inventory
to update counter quantity as well as other inventory details.availableToPurchase
is calculated based on the formula onHand-allocated-shipped
.