在Shopify Python API中查询客户保存的搜索

时间:2019-07-15 21:54:31

标签: python rest shopify

我试图让所有上周放弃订单的客户。

我能够通过REST API实现它,但是,我想知道如何通过Shopify Python API实现同样的事情。

这是我在邮递员中尝试的代码:

https://{shop}.myshopify.com/admin/api/2019-07/customer_saved_searches/{customer_saved_search_id}/customers.json?limit=250

此外,REST API中似乎有250个结果限制,有没有办法超过它?

1 个答案:

答案 0 :(得分:0)

Python SDK是Shopify的事后思考。可悲的是。

关于REST请求的分页。只需在网址末尾添加查询参数...?page=2

关于Python SDK,以下方法可以解决问题:

id = 23423423423
css = shopify.CustomerSavedSearch.find(id)