I noticed that there is an endpoint not listed in the developer documentation online, but exists within the shiphero structure when looking at the documentation pulled from Altair. This is called tote(barcode). This specific endpoint perfectly fits my needs, and I’ve seen examples of it used in the community questions. However, when I try to use this query, it gives me back a 401 unauthorized request. Does anyone know why?
query {
tote(barcode: “my barcode number here”)
{
request_id
complexity
data {
name
orders {
order_number
line_items {
edges {
node {
sku
quantity
tote_picks {
id
}
}
}
}
}
picks {
id
quantity
}
}
}
}