- 通用接口
- 海运数据接口
- 空运数据接口
- 陆运数据接口
- 关务数据接口
- 其他接口
- 通用港杂费
- 操作时间
操作时间查询接口
POST
/api/localCharge/queryOptime
请求参数
Query 参数
companyCode
string
必需
token
string
必需
orgCode
string
组织代码
Body 参数application/json
polCd
string
始发港五字码
podCd
string
⽬的港五字码
carrierCd
string
船公司代码
vessel
string
船名
voyage
string
航次
示例
{
"polCd": "string",
"podCd": "string",
"carrierCd": "string",
"vessel": "string",
"voyage": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.trackingeyes.com/api/localCharge/queryOptime?companyCode&token&orgCode' \
--header 'Content-Type: application/json' \
--data-raw ''
返回响应
🟢200成功
application/json
Body
code
integer
状态码
codeDesc
string
类型
message
string
错误信息
result
object
结果集
polCd
string
始发港五字码
podCd
string
⽬的港五字码
carrierCd
string
船公司英文名
vessel
string
船名
voyage
string
航次
etd
string
预计抵港时间
pol_eta
string
预计到港时间
bookingCutoff
string
截订舱
cyOpen
string
进港时间
cyClose
string
截港时间
cutOff
string
截申报
customCutoff
string
截放行
siCutoff
string
截提单
vgmCutoff
string
截VGM
estimatedBookingCutoff
string
预计截订舱
estimatedCyOpen
string
预计进港时间
estimatedCyClose
string
预计截港时间
estimatedCutoff
string
预计截申报
estimatedCustomCutoff
string
预计截放行
estimatedSiCutoff
string
预计截提单
estimatedVgmCutoff
string
预计截VGM
示例
{
"code": 200,
"codeDesc": "success",
"message": "Operation succeeded",
"result": {
"polCd": "CNDCB",
"podCd": "SADMM",
"carrierCd": "RCL",
"vessel": "ESL BUSAN",
"voyage": "02509W",
"etd": "2025-03-06 00:00:00",
"bookingCutoff": "",
"cyOpen": "",
"cyClose": "",
"cutoff": "",
"customCutoff": "",
"siCutoff": "",
"vgmCutoff": "",
"estimatedBookingCutoff": "",
"estimatedCyOpen": "2025-02-27",
"estimatedCyClose": "2025-03-04 12:00:00",
"estimatedCutoff": "2025-03-04 12:00:00",
"estimatedCustomCutoff": "2025-03-04 12:00:00",
"estimatedSiCutoff": "2025-03-04 12:00:00",
"estimatedVgmCutoff": "2025-03-04 12:00:00"
}
}
修改于 2025-03-25 08:26:26