단일 문서 검색
단일 Zonos에서 생성된 세관 문서를 검색하는 데 필요한 정보를 제공합니다.
단일 customsSpec
을 검색하려면 사용자가 반환하려는 customsSpec
의 ID로 쿼리할 수 있습니다.
쿼리
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query CustomsSpec($id: ID!) {
customsSpec(id: $id) {
id
deliveryDutyPaid
declarationStatement
amountSubtotals {
duties
fees
insurance
shipping
}
customsItems {
items {
id
}
}
}
}
변수
1
2
3
{
"id": "customs_spec_66b544c9-439f-4a82-b5bb-1a00274e8a61"
}
응답
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"data": {
"customsSpec": {
"id": "customs_spec_66b544c9-439f-4a82-b5bb-1a00274e8a61",
"declarationStatement": "I declare this is a declaration statement",
"amountSubtotals": {
"duties": 10.0,
"fees": 5.0,
"insurance": 10.0,
"shipping": 15.99
},
"customsItems": [
{
"items": [
{
"id": "test_item_123"
}
]
}
]
}
}
}
여러 문서 검색
여러 Zonos에서 생성된 세관 문서를 검색하는 데 필요한 정보를 제공합니다.
사용자가 DateTimeRange
및 trackingNumber
로 여러 customsSpecs
를 가져오고자 할 때, 다음 쿼리를 사용할 수 있습니다.
쿼리
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query CustomsSpecs($first: Int, $filter: CustomsSpecFilter) {
customsSpecs(first: $first, filter: $filter) {
edges {
node {
id
amountSubtotals {
duties
fees
insurance
}
}
}
}
}
변수
1
2
3
4
5
6
7
8
9
10
{
"first": 5,
"filter": {
"between": {
"before": "2022-09-25T12:00:00Z",
"after": null
},
"trackingNumber": null
}
}
응답
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"data": {
"customsSpecs": {
"edges": [
{
"node": {
"id": "customs_spec_ee8eae49-64cd-440e-ac92-3cd90ce4be5b",
"amountSubtotals": {
"duties": 143.0,
"fees": 2.0,
"insurance": 100.0
}
}
},
{
"node": {
"id": "customs_spec_da0015aa-78cc-46c0-9006-bf25e0d7c57f",
"amountSubtotals": {
"duties": 143.0,
"fees": 2.0,
"insurance": 100.0
}
}
},
{
"node": {
"id": "customs_spec_8e8039f5-2e8c-4958-922f-f4dad0bc190f",
"amountSubtotals": {
"duties": 143.0,
"fees": 2.0,
"insurance": 100.0
}
}
},
{
"node": {
"id": "customs_spec_30e31150-13fe-423f-952a-13582454744a",
"amountSubtotals": {
"duties": 143.0,
"fees": 2.0,
"insurance": 100.0
}
}
}
]
}
}
}
세관 사양 검색
Zonos 세관 API의 사용자들은 accountOrderNumber
, DateTimeRange
, 주문 id
, 및 Zonos storeId
를 기반으로 customsSpec
을 검색할 수 있는 능력을 가지고 있습니다. 이 시나리오에서 사용자는 customsSpec
대신 orders
DGS를 쿼리할 것입니다.
주문에 대한 문서 검색
하나의 주문에 대한 문서 검색
여러 주문에 대한 문서 검색
단일 주문에 대한 Zonos에서 생성한 세관 문서를 검색하는 데 필요한 정보를 제공합니다.
단일 customsSpec
을 검색하기 위해 사용자는 customsSpec
에 연결된 order
의 ID로 쿼리할 수 있습니다.
쿼리
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query OrderQuery($id: String!) {
order(orderId: $id) {
id
customsSpecs {
id
amountSubtotals {
taxes
shipping
duties
fees
insurance
items
}
clearanceType
currency
}
}
}
변수
1
2
3
{
"id": "order_ad8dfd1f-5776-425f-8e4d-a0bd4e7d86e3"
}
응답
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
30
31
32
33
34
35
{
"data": {
"order": {
"id": "order_ad8dfd1f-5776-425f-8e4d-a0bd4e7d86e3",
"customsSpecs": [
{
"id": "customs_spec_6a4aed06-5303-4e83-965d-2accdb00b600",
"amountSubtotals": {
"taxes": 10.21,
"shipping": 25.99,
"duties": 143,
"fees": 2,
"insurance": 100,
"items": 30.2
},
"clearanceType": "COMMERCIAL",
"currency": "USD"
},
{
"id": "customs_spec_dcbc618c-7480-4651-b59b-d634b0e68e9c",
"amountSubtotals": {
"taxes": 10.21,
"shipping": 25.99,
"duties": 143,
"fees": 2,
"insurance": 100,
"items": 30.2
},
"clearanceType": "COMMERCIAL",
"currency": "USD"
}
]
}
}
}
세관 문서 검색
하나 또는 여러 주문에 대한 세관 문서를 검색하세요.
GraphQL
특정 배송에 대해
customsSpec
이 생성되거나 생성된 후, 이를 쿼리할 수 있습니다. 이러한 쿼리는id
,dateTimeRange
또는trackingNumber
를 기반으로customsSpec
을 가져오려는 모든 사람이 사용할 수 있습니다.