주문 쿼리
주문 세부정보를 가져오려면 다음 쿼리를 사용할 수 있습니다:
쿼리
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의 파트너이고 우리가 상호 고객을 공유하는 경우, 당신의 플랫폼에서 해당 주문을 표시하거나 Zonos에서 생성된 라벨을 검색하는 데 사용할 수 있는
order
가 생성되었는지 확인할 수 있습니다. 또한 주문을 생성하는 데 사용된landedCost
에 대한 세부정보를 확인할 수 있습니다.