如何使用Shippingbo API检索包裹清单?

问题描述 投票:0回答:1

我们需要通过API检索包装清单。

一个包是多种产品的组合,可在shippingbo后台菜单“产品/包”中找到。

可以获得产品列表: https://app.shippingbo.com/products

可以使用相同的 url 获取产品数据或包数据: https://app.shippingbo.com/products/{product_id} https://app.shippingbo.com/products/{pack_id}

但是我们可以找到一种方法来获取包列表,例如: https://app.shippingbo.com/packs

或者有没有办法通过具有特定参数的产品列表获取包?

curl shipping-method
1个回答
0
投票

您可以添加

is_pack
参数来过滤列表并获取包:

curl --request GET \
  --url 'https://app.shippingbo.com/products?is_pack=true' \
  --header 'Accept: application/json' \
  --header 'X-API-TOKEN: ' \
  --header 'X-API-USER: ' \
  --header 'X-API-USER-ID: ' \
  --header 'X-API-VERSION: '
© www.soinside.com 2019 - 2024. All rights reserved.