API를 통한 배송 생성
Landed Cost가 계산되고 주문이 생성되면, API를 통해 추적 번호 및 기타 배송 세부 정보를 보낼 수 있습니다.
배송 세부 정보
배송으로 라벨 만들기
Zonos에 shipment
에 대해 알릴 때 이 요청을 사용하지만 라벨이 필요하지 않은 경우입니다. order
와 연결된 parties
및 shipmentCartons
에 대한 세부 정보를 전달합니다. 이러한 세부 정보를 제공함으로써 주문이 부분적으로 또는 전체적으로 이행되었는지 알 수 있습니다.
변이
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
mutation {
partyCreateWorkflow(
input: [
{
location: {
administrativeArea: "Utah"
administrativeAreaCode: "UT"
countryCode: US
line1: "123 Test Street"
locality: "St George"
postalCode: "84770"
}
person: { companyName: "test Corp", phone: "8018565714" }
type: ORIGIN
}
{
location: {
administrativeArea: "Quebec"
administrativeAreaCode: "QC"
countryCode: CA
line1: "2147 Pitfield Blvd"
locality: "Pierrefonds"
postalCode: "H9H 3C7"
}
person: {
email: "test@gmail.com"
firstName: "firstName"
lastName: "lastName"
phone: "5022303021"
companyName: "goProTest"
metadata: { key: "key", value: "value" }
}
type: DESTINATION
}
]
) {
type
id
organization
}
shipmentCreateWorkflow(
input: {
trackingNumber: "test_tracking_num_5"
orderId: "order_c535c9c8-88a1-4dde-b938-7dd7f776beee"
serviceLevel: "service_level_720198b0-43ce-409e-a5bb-0c6e91a43fad"
shipmentCartons: [
{
dimensionalUnit: "INCH"
length: 10
width: 10
height: 10
weightUnit: "POUND"
weight: 10
trackingNumber: "1234567890"
items: [{ itemReference: "someothersku4345" }]
}
]
}
) {
id
status
tracking {
id
number
}
shipmentCartons {
id
tracking {
number
}
carton {
id
length
width
height
dimensionalUnit
weight
weightUnit
}
}
}
}
배송 취소
생성된 라벨을 취소하고자 할 경우, 다음 변형을 사용하여 배송을 취소할 수 있습니다. 배송에 대해 라벨이 생성된 경우, 해당 라벨도 취소됩니다. 배송이 취소되면 업데이트할 수 없습니다.
요청
1
2
3
4
5
6
7
8
9
10
11
12
mutation {
shipmentStatusUpdate(
input: {
shipment: "shipment_f1fe4dbd-e471-49fa-94e7-84e369083223"
status: VOIDED
note: "Voiding shipment"
}
) {
id
status
}
}
배송 생성
Zonos API로 배송을 생성하세요.GraphQL
Zonos API와 통합되어 있고 대시보드 외부로 배송할 수 있는 승인을 받은 경우, 배송을 생성하고
shipmentCreateWorkflow
변이를 사용하여 추적 번호를 제공해야 합니다. 또한 이러한 변이를 사용하여 Zonos에 교차 도킹 시설로의 국내 배송에 대해 알릴 수 있습니다.세금 및 관세 앱을 사용하고 Zonos에 추적 번호를 동기화하는 플랫폼으로 배송하거나 대시보드에서 배송하는 경우, 이 변이를 사용할 필요가 없습니다.