hey everyone i'm trying to ship this Order in Chan...
# integrations
l
hey everyone i'm trying to ship this Order in ChannelAdvisor in Celigo and i get this error am not sure what im doing wrong OrderID is correct and body
Copy code
{
  "TrackingNumber":"21323213",
  "Items": [
     {{#each rows}}
    {
      "Sku":"{{this.Sku}}",
      "Quantity":"{{this.Quantity}}"
    }{{#unless @last}},{{/unless}}
    {{/each}}
  ]
}
m
It doesn't look properly formatted according to this:
Copy code
POST <https://api.channeladvisor.com/v1/Orders(123456)/Ship?access_token=xxxxxxxxxx>
{
  "Value":{
    "ShippedDateUtc": "2014-07-04T19:58:47.1Z",
    "TrackingNumber": "1Z 999 AA1 01 2345 6784",
    "ShippingCarrier": "UPS",
    "ShippingClass": "Ground",
    "Items":[
    {
      "Sku":"ABC",
      "Quantity":1
    }]
  }
}
👍 1
l
@mightyd3 Thank you so much