Shipment

Quick Reference

Method

Endpoint

Description

GET

/api/shipment

GET

/api/shipment/accessorials

GET

/api/shipment/document/{docId}

GET /api/shipment

Parameters:

Query Parameters:

  • franchiseeId (string, query): No description available

  • providerId (string, query): No description available

  • proNumber (string, 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/shipment"

)

# Process the response
print(response)

Sample Response:

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

GET /api/shipment/accessorials

Example Request:

from ABConnect import ABConnectAPI

# Initialize the API client
api = ABConnectAPI()

# Make the API call
response = api.raw.get(
    "/api/shipment/accessorials"

)

# Process the response
print(response)

Sample Response:

1[]

GET /api/shipment/document/{docId}

Parameters:

Path Parameters:

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

Query Parameters:

  • franchiseeId (string, 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/shipment/document/{docId}"
,
    docId="789e0123-e89b-12d3-a456-426614174002"

)

# Process the response
print(response)

Sample Response:

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