Getting Quantity on Hand via API?

in Development
Hi.
When I call:
https://myhost/API/Account/{{accountID}}/Item.json
I see all the items with their respective attributes. However i don't see any "quantity on hand" field (qoh). My understanding it is supposed to be found under something like
{ItemShops: {Item Shop 1: {qoh: 1}}},
but for me it is not there.
Where can i find the quantity amount for each item?
2 comments
Solved! Need add load_relations=["ItemShops"] to my api call.
In other words:
https://myhost/API/Account/{{accountID}}/Item.json?load_relations=["ItemShops"]
Hi @LightUser,
Perfect!