Can't we update Inventory via API

sure! you can use this Query:

query {
  account {
    request_id
    complexity
    data {
      id
      legacy_id
      warehouses {
        id
        legacy_id
      }
      customers {
        edges {
          node {
            id
            legacy_id
            username
            email
          }
        }
      }
    }
  }
}

but this will have to be done with a bearer from the 3PL. Otherwise, the customers section will return empty

1 Like