- Authentication
- Global Ocean Cargo Tracking
- Global Air Cargo Tracking
Air Tracking Subscribe
POST
/api/airLinesBill/bookAirLines
Request
Query Params
companyCode
string
required
token
string
required
orgCode
string
optional
Body Params application/json
array of:
deliveryNo
string
optional
<= 38 characters
orderNo
string
optional
<= 600 characters
localKey
string
optional
<= 38 characters
referenceNo
string
required
<= 32 characters
carrierCd
string
optional
<= 16 characters
extendNo
string
optional
customer
string
optional
<= 128 characters
customerService
string
optional
<= 128 characters
remark
string
optional
<= 225 characters
Example
[
{
"deliveryNo": "",
"orderNo": "",
"localKey": "",
"referenceNo": "23591210755",
"carrierCd": "TK",
"extendNo": "",
"customer": "",
"customerService": "",
"remark": ""
}
]
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.trackingeyes.com/api/airLinesBill/bookAirLines?companyCode&token&orgCode' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"deliveryNo": "",
"orderNo": "",
"localKey": "",
"referenceNo": "23591210755",
"carrierCd": "TK",
"extendNo": "",
"customer": "",
"customerService": "",
"remark": ""
}
]'
Responses
🟢200成功
application/json
Body
code
integer
required
200=all successful, 300=warning (partial failure), 400=all failed, 401=unauthorized, 500=error
codeDesc
string
required
<= 255 characters
message
string
required
<= 255 characters
result
array [object {14}]
required
deliveryNo
string
optional
<= 38 characters
orderNo
string
optional
<= 600 characters
referenceNo
string
required
<= 32 characters
carrierCd
string
required
<= 16 characters
extendNo
string
optional
customer
string
optional
<= 128 characters
customerService
string
optional
<= 128 characters
remark
string
optional
<= 255 characters
billCreateTime
string <date-time>
required
id
string
required
<= 32 characters
localKey
string
optional
<= 38 characters
itemCode
integer
optional
itemCodeDesc
string
optional
<= 8 characters
itemMessage
string
optional
<= 255 characters
Example
{
"code": 200,
"codeDesc": "success",
"message": "Operation succeeded",
"result": [
{
"deliveryNo": "",
"orderNo": "",
"referenceNo": "23591210755",
"carrierCd": "TK",
"extendNo": "",
"customer": "",
"customerService": "",
"remark": "",
"billCreateTime": "2025-02-20 16:49:05",
"id": "1892496683351281664",
"localKey": "",
"itemCode": 200,
"itemCodeDesc": "success",
"itemMessage": ""
}
]
}