JobTracking
Track real-time status and location of shipments throughout the delivery process.
Quick Reference
Method |
Endpoint |
Description |
|---|---|---|
GET |
/api/job/{jobDisplayId}/tracking |
|
GET |
/api/job/{jobDisplayId}/tracking/shipment/{proNumber} |
GET /api/job/{jobDisplayId}/tracking
Parameters:
Path Parameters:
jobDisplayId (string, path) (required): No description available
Example Request:
from ABConnect import ABConnectAPI
# Initialize the API client
api = ABConnectAPI()
# Make the API call
response = api.raw.get(
"/api/job/{jobDisplayId}/tracking"
,
jobDisplayId="2000000"
)
# Process the response
print(response)
ab api raw get /api/job/{jobDisplayId}/tracking \
jobDisplayId=2000000
curl -X GET \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
'https://api.abconnect.co/api/job/2000000/tracking'
Sample Response:
1{
2 "status": "success",
3 "data": {}
4}
GET /api/job/{jobDisplayId}/tracking/shipment/{proNumber}
Parameters:
Path Parameters:
proNumber (string, path) (required): No description available
jobDisplayId (string, path) (required): No description available
Example Request:
from ABConnect import ABConnectAPI
# Initialize the API client
api = ABConnectAPI()
# Make the API call
response = api.raw.get(
"/api/job/{jobDisplayId}/tracking/shipment/{proNumber}"
,
proNumber="example-value"
,
jobDisplayId="2000000"
)
# Process the response
print(response)
ab api raw get /api/job/{jobDisplayId}/tracking/shipment/{proNumber} \
proNumber=example-value \
jobDisplayId=2000000
curl -X GET \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
'https://api.abconnect.co/api/job/2000000/tracking/shipment/example-value'
Sample Response:
1{
2 "status": "success",
3 "data": {}
4}