JobTrackingV3

Quick Reference

Method

Endpoint

Description

GET

/api/v3/job/{jobDisplayId}/tracking/{historyAmount}

GET /api/v3/job/{jobDisplayId}/tracking/{historyAmount}

Parameters:

Path Parameters:

  • jobDisplayId (string, path) (required): No description available

Query Parameters:

  • historyAmount (integer, query): No description available

Example Request:

from ABConnect import ABConnectAPI

# Initialize the API client
api = ABConnectAPI()

# Make the API call
response = api.raw.get(
    "/api/v3/job/{jobDisplayId}/tracking/{historyAmount}"
,
    jobDisplayId=2000000

)

# Process the response
print(response)

Sample Response:

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