查询订单
要提取订单详情,您可以使用以下查询:
查询
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
query {
orders(first: 10) {
edges {
cursor
node {
id
accountOrderNumber
landedCosts {
amountSubtotals {
duties
fees
items
landedCostTotal
shipping
taxes
}
id
landedCostGuaranteeCode
}
}
}
}
}
响应
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"data": {
"orders": {
"edges": [
{
"cursor": "c2ltcGxlLW9mZnNldC1jdXJzb3Iw",
"node": {
"id": "order_d221c2d2-a26a-46b9-a5ee-c9984381944f",
"accountOrderNumber": "31124",
"landedCosts": [
{
"amountSubtotals": {
"duties": 0.0,
"fees": 8.19,
"items": 50.0,
"landedCostTotal": 51.15,
"shipping": 176.11,
"taxes": 42.96
},
"id": "landed_cost_9cbbb49c-3742-4d25-b79d-d8b2054ad15a",
"landedCostGuaranteeCode": "ZONOS"
}
]
}
}
]
}
}
}
检索订单详情
获取共享客户的 Zonos 订单。GraphQL
如果您是 Zonos 的合作伙伴,并且我们有共同的客户,您可以检查我们是否创建了可以被您的平台使用的
order
,以显示这些订单或使用它们来检索由 Zonos 生成的标签。您还可以获取用于创建订单的landedCost
的详细信息。