Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

next link does not receive from Inventory Level API

next link does not receive from Inventory Level API

parasmk
Shopify Partner
6 0 5

Hello Support,

I am using "inventory_levels" Admin API (v 2023-04) with a limit of 250 to pull inventory from the store. But it seems, I am not receiving inventory for all items. When I looked deeply, I was not receiving "next" link after the response. Sometimes I could receive 10 calls, sometimes 15 calls etc.

Could you guide us to fix this issue? Thanks.

Replies 2 (2)

Liam
Community Manager
3108 342 884

Hi Parasmk,

It sounds like you might be encountering pagination issues with the API. The inventory_levels API endpoint uses cursor-based pagination and you should be able to retrieve all inventory items by following the next link in the HTTP header until no such link is returned.

 

If you're not receiving the next link in the HTTP header, it be because you've retrieved all the available data. However, based on your message, it seems like's more data to retrieve which you're not getting.

Here are a few things you could try:

  1. Check your API call limit: Please make sure you aren't hitting the API call limit. Shopify allows up to 2 calls per second, and up to 40 calls in 20 seconds.

  2. Check the response headers: The next link should be in the HTTP Link header of the response. Please ensure you're checking the correct place for it.

  3. Check for errors in your request: Make sure there are no errors in your request parameters, headers, or body that might be causing an incomplete response.

If you've tried these steps and you're still encountering issues, please provide us with more details about your API calls (including request parameters and headers) so we can help you troubleshoot further.

 

Hope this helps!

Liam | Developer Advocate @ Shopify 
 - Was my reply helpful? Click Like to let me know! 
 - Was your question answered? Mark it as an Accepted Solution
 - To learn more visit Shopify.dev or the Shopify Web Design and Development Blog

radhika_sis
Shopify Partner
1 0 0

Hi Parasmk,

We were having the same issue and found that Shopify is sending the next link parameter sometimes as "Link" and other times as "link" (lowercase) but our code was always checking for "Link" param in Headers.

Looks like a Shopify bug as it is very random. But for now, we are not converting it to lowercase always before comparing the parameters.

Hope this helps you too.

Hope it helps.