Frequently Asked Questions (FAQs)
Q: How can I insert fees, discounts, and taxes both at order level and at item level?
A:
- To insert at item level: include discounts, fees, and tax details inside the items array while creating an order.
- To insert at order level: include discounts, fees, and tax details outside the items array while creating an order. For examples and details, see the request paylod of Order Create .
type
field is used as an identifier for each of discounts, fees, and taxes.
Q: How can I uplaod inventory if I have more than one POS, WMS, or other source of truth for inventory?
A:
-
Prepare a
.csv
file with all the inventory details. -
Use the bulk operation endpoint
POST/api/v2/inventory/aws/upload-url
to create an URL -
Upload the
.csv
file to the created URL generated using the second point.
Q: What are counters and how are they updated?
A: There are two types of counters- Base Counter and Virtual Counter. Base counters refer to onHand
, Allocated
, Shipped
, and any other custome counter that are created using the counter endpoint. Virtual counter refers to availableToPurchase
counter.
-
Base counters can be updated (except
Allocated
as it is automatically calculated during order workflow )using:-
adjustment endpoint: Use
PUT/api/v2/inventory/adjustment
to adjust counter quantity. Using this endpoint, you can only adjust the counter quanitity, not other inventory details, such as type, lead-time etc. 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 original counter quanitty is 100 (that you mention while creating the counter), and mention the counter quantity as '+10' or '-10' in the paylod while calling the adjustment endpoint, the original counter quantity is adjusted by 110 (100+10) or 90 (100-10) respectively. -
Update inventory endpoint: Use
PUT/api/v2/inventory
to update counter quantity as well as other inventory details.
-
adjustment endpoint: Use
-
Virtual counter (availableToPurchase) is calculated/updated during the order workflow. When an order is placed, fabric OMS automatically allocates the order, and then order is picked, packed, and shipped. Once order moves to allocated and shipped phase,
availableToPurchase
is calculated based on the formulaonHand-allocated-shipped
.