四大偏远
GET
https://tms-api-go.czl.net/api/remote/query
最后修改时间:2024-12-03 06:48:02
请求参数
Query 参数
country_code
string
可选
示例值:
CO
city_or_post
string
可选
示例值:
082001
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://tms-api-go.czl.net/api/remote/query?country_code=CO&city_or_post=082001'
返回响应
🟢200成功
application/json
Body
dhl
object
必需
is_remote
boolean
必需
remote_type
string
必需
matched_city
string
必需
matched_post
string
必需
fedex
object
必需
is_remote
boolean
必需
remote_type
string
必需
matched_city
string
必需
matched_post
string
必需
tnt
object
必需
is_remote
boolean
必需
remote_type
string
必需
matched_city
string
必需
matched_post
string
必需
ups
object
必需
is_remote
boolean
必需
remote_type
string
必需
matched_city
string
必需
matched_post
string
必需
示例
{
"dhl": {
"is_remote": true,
"remote_type": "",
"matched_city": "",
"matched_post": "082001"
},
"fedex": {
"is_remote": true,
"remote_type": "TIERB",
"matched_city": "",
"matched_post": "082001"
},
"tnt": {
"is_remote": false,
"remote_type": "",
"matched_city": "",
"matched_post": ""
},
"ups": {
"is_remote": false,
"remote_type": "",
"matched_city": "",
"matched_post": ""
}
}
修改于 2024-12-03 06:48:02