UPDATE: New fields added to our API

Hello Community!
This week we released the following updates to our API!!

  • Added field active:boolean to warehouse_product_update mutation:
mutation{
  warehouse_product_update(data:{
    sku:"string"
    warehouse_id:"string"
    active:boolean
  }){
    request_id
    complexity
  }
}
  • Added field tracking_number:string to purchase_order_create mutation:
mutation{
  purchase_order_create(data:{
    po_number:"string"
    warehouse_id:"string"
    subtotal:"string"
    shipping_price:"string"
    total_price:"string"
    tracking_number:"string"
    line_items:{
      sku:"string"
      quantity:int
      expected_weight_in_lbs:"string"
      price:"string"
    }
  }){
    complexity
    request_id
  }
}

Have a great day!
ShipHero Team

2 Likes