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)

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)

Sample Response:

1{
2  "status": "success",
3  "data": {}
4}