서비스 수준 쿼리
상인에 대한 사용 가능한 서비스 수준을 보려면 다음 쿼리를 사용할 수 있습니다.
쿼리
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
query {
shippingProfiles {
customServiceLevelCode
id
landedCostMethod
serviceLevel {
availability
carrier {
name
}
carrierApiCode
carrierLabelApiCode
code
deliveryType
id
name
}
}
}
응답
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"data": {
"shippingProfiles": [
{
"customServiceLevelCode": "USPS_PRIORITY_MAIL_INTERNATIONAL",
"id": "shipping_profile_457d4bb6-ef05-4e7e-939e-2a5b7fb2dccf",
"landedCostMethod": "DAP_FORCED",
"serviceLevel": {
"availability": "GENERAL",
"carrier": {
"name": "USPS"
},
"carrierApiCode": "2",
"carrierLabelApiCode": "691",
"code": "usps.priority_intl",
"deliveryType": null,
"id": "service_level_56489602-42fb-4f47-afb3-2135e87d215d",
"name": "USPS Priority Int'l"
}
}
]
}
}
서비스 수준 검색
공유 고객을 위한 사용 가능한 서비스 수준을 확인하세요.GraphQL
API를 통해 배송을 이행할 Zonos의 파트너인 경우, 해당 배송에 대해 사용 가능한 서비스 수준 목록을 가져올 수 있습니다.