Hi, anyone can help me with how am I going to get all the inventory from clover if I have 2k products? Thank you
Hi, anyone can help me with how am I going to get all the inventory from clover if I have 2k products? Thank you
You can paginate your requests with the limit and offset query parameters: https://docs.clover.com/docs/paginating-elements
Continue incrementing the offset until your request retrieves fewer elements than your limit. If you're retrieving 100 items at a time, for example, your first couple calls would look like:
GET { {baseUrl}}/v3/merchants/{ {merchantId}}/items?limit=100&offset=0
GET { {baseUrl}}/v3/merchants/{ {merchantId}}/items?limit=100&offset=100
3 People are following this question.