Add PO | POST | /order

Summary

This API is used to create PO in the Increff Label Software system.

Description

This API will create PO which can be used to create box packaging and then create shipment.

Request

{
  "orderCode": "PO_ABC_1",
  "orderItems": [
    {
      "skuCode": "sku_code_1",
      "quantity": 2
    },
    {
      "skuCode": "sku_code_2",
      "quantity": 2
    }
  ],
  "supplierCode": "7647681"
}
Parameter Name Data Type Description Mandatory
orderCode String Unique order code Yes
orderItems List List of line items Yes
supplierCode String Code of the supplier for which PO is generated Yes

OrderItems

Parameter Name Data Type Description Mandatory
skuCode String SkuCode Yes
quantity Integer Quantity of skuCode for that line item Yes

Request Headers

Header Name Description Mandatory
authDomainname Organisation ID for the client created in Increff Label Software Yes
authUsername Username for integration user created in Increff Label Software Yes
authPassword Password for integration user created in Increff Label Software Yes

Response

Empty Body

HttpStatus Code

200

Update PO | PUT | /order

Summary

This API is used to update PO in the Increff Label Software system.

Description