DOCS

Retrieve order details

/

注文の詳細を取得

共有顧客のためにZonosの注文を取得します。

GraphQL

あなたがZonosのパートナーであり、私たちが相互の顧客を共有している場合、あなたのプラットフォームでこれらの注文を表示するために使用できるorderが作成されているかどうかを確認できます。また、Zonosによって生成されたラベルを取得するために使用することもできます。さらに、注文を作成するために使用されたlandedCostの詳細を表示することもできます。

注文のクエリ 

注文の詳細を取得するには、次のクエリを使用できます:

クエリ

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"
              }
            ]
          }
        }
      ]
    }
  }
}

このページは役に立ちましたか?


このページには: