Documentation Index
Fetch the complete documentation index at: https://trailflow.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
Purpose
This page collects representative Partner API request and response examples that match the canonical contract. Use them together with the API reference and OpenAPI contract published in this portal.How to use this page
Read the endpoint map first, then compare each example against the corresponding schema in the API reference before you build or update an integration. The examples below are intentionally realistic enough to support implementation, debugging, and AI-assisted tooling. They show the fields most integrators need to reason about request shape, response shape, identifiers, timestamps, pagination, and webhook payload handling.What these samples help you validate
- required scopes before you call an endpoint
- stable identifiers and payload fields you should persist
- the difference between list, detail, tracking, and webhook flows
- the minimum shape an agent or integration should expect before automating work
Endpoint coverage map
GET /v1/loadsandGET /v1/loads/{id}are read flows forloads:readPOST /v1/loads,POST /v1/loads/upsert, andPOST /v1/loads/{id}/statusare write flows forloads:writeGET /v1/customersandGET /v1/carriersare lookup flows for their respective read scopesGET /v1/tracking/{loadId}reads the latest tracking state fortracking:readPOST /v1/webhooks,GET /v1/webhooks, andDELETE /v1/webhooks/{id}are subscription-management flows forwebhooks:manage
List Loads Response
RepresentativeGET /v1/loads response:
Get Load Response
RepresentativeGET /v1/loads/{id} response:
Get Tracking Response
RepresentativeGET /v1/tracking/{loadId} response for an ineligible load:
Create Webhook Request
RepresentativePOST /v1/webhooks request body:
Create Webhook Response
RepresentativePOST /v1/webhooks response:
Create Load Request
RepresentativePOST /v1/loads request body:
Create Load Response
RepresentativePOST /v1/loads response:
Upsert Load Request
RepresentativePOST /v1/loads/upsert request body:
Upsert Load Response
RepresentativePOST /v1/loads/upsert response:
Update Load Status Request
RepresentativePOST /v1/loads/{id}/status request body:
Update Load Status Response
RepresentativePOST /v1/loads/{id}/status response:
List Customers Response
RepresentativeGET /v1/customers response:
List Carriers Response
RepresentativeGET /v1/carriers response:
List Webhooks Response
RepresentativeGET /v1/webhooks response:
Delete Webhook Response
RepresentativeDELETE /v1/webhooks/{id} response:
Example Sync Request
Example incremental polling request:Example Error Response
Representative error envelope:Notes
- These examples are representative and should be used together with the endpoint schemas in the API reference.
- The API reference remains the source of truth for field requirements, enum values, and response shapes.