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)
ab api raw get /api/shipment
curl -X GET \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
'https://api.abconnect.co/api/shipment'
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)
ab api raw get /api/shipment/accessorials
curl -X GET \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
'https://api.abconnect.co/api/shipment/accessorials'
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)
ab api raw get /api/shipment/document/{docId} \
docId=789e0123-e89b-12d3-a456-426614174002
curl -X GET \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
'https://api.abconnect.co/api/shipment/document/789e0123-e89b-12d3-a456-426614174002'
Sample Response:
1{
2 "status": "success",
3 "data": {}
4}