POST
/
api
/
v1
/
track-and-trace
/
trigger-check-call
curl --request POST \
  --url https://api.fleetworks.ai/api/v1/track-and-trace/trigger-check-call \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "toPhone": "+15551234567",
  "call_type": "PICK",
  "waiting_at_facility": true,
  "next_stop_appt_start": "2025-03-06T08:00:00",
  "next_stop_appt_end": "2025-03-06T10:00:00",
  "next_stop_city": "Chicago",
  "next_stop_state": "IL",
  "load_number": "FW-123456",
  "load_stops": [
    {
      "type": "pickup",
      "address": {
        "city": "Chicago",
        "state": "IL"
      },
      "windowStart": "2025-03-06T08:00:00",
      "windowEnd": "2025-03-06T10:00:00"
    },
    {
      "type": "dropoff",
      "address": {
        "city": "New York",
        "state": "NY"
      },
      "windowStart": "2025-03-08T08:00:00",
      "windowEnd": "2025-03-08T10:00:00"
    }
  ]
}'
{
  "success": true,
  "jobId": "90510"
}

Authorizations

Authorization
string
header
required

An authentication token that identifies the organization associated with the event. You can reach out to FleetWorks team to request a token.

Body

application/json

Response

200
application/json

Success

The response is of type object.