用于订购的 BigCommerce 店面 api
BigCommerce storefront apis for order
/api/storefront/orders/* 的文档在哪里?
我期待在此页面上找到它。
https://developer.bigcommerce.com/api-docs/cart-and-checkout/working-sf-apis
具体来说,涵盖 /api/storefront/orders/:order-id 的文档
并覆盖查询字符串的有效输入。我知道您可以传递包含,其中一个或多个值作为逗号分隔的字符串
- 付款
- lineItems.physicalItems.socialMedia
- lineItems.physicalItems.options
- lineItems.digitalItems.socialMedia
- lineItems.digitalItems.options
编辑
theme\templates\pages\order-confirmation.html
上使用的结帐模板上下文对象具有此架构
{
"order_confirmation_content": "goes in the body",
"checkout_head": "goes in the head",
"order": {
"id": 206
},
"header_image": "for an img src attribute"
}
可在此处找到店面订单 API 的文档:
但是,正如您提到的,有一些查询参数未记录在案。这些不受官方支持,将来可能会发生变化。在这种情况下,我们的立场是在确定长期支持之前暂缓记录 API 参数。希望有助于提供一些背景信息!
/api/storefront/orders/* 的文档在哪里? 我期待在此页面上找到它。 https://developer.bigcommerce.com/api-docs/cart-and-checkout/working-sf-apis
具体来说,涵盖 /api/storefront/orders/:order-id 的文档 并覆盖查询字符串的有效输入。我知道您可以传递包含,其中一个或多个值作为逗号分隔的字符串
- 付款
- lineItems.physicalItems.socialMedia
- lineItems.physicalItems.options
- lineItems.digitalItems.socialMedia
- lineItems.digitalItems.options
编辑
theme\templates\pages\order-confirmation.html
上使用的结帐模板上下文对象具有此架构
{
"order_confirmation_content": "goes in the body",
"checkout_head": "goes in the head",
"order": {
"id": 206
},
"header_image": "for an img src attribute"
}
可在此处找到店面订单 API 的文档:
但是,正如您提到的,有一些查询参数未记录在案。这些不受官方支持,将来可能会发生变化。在这种情况下,我们的立场是在确定长期支持之前暂缓记录 API 参数。希望有助于提供一些背景信息!