POST
/
api
/
v1
/
track-and-trace
/
trigger-check-call
Trigger a 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",
  "waitingAtFacility": true,
  "nextStopIndex": 0,
  "loadNumber": "FW-123456",
  "metadata": {
    "internal_load_id": "ABC123",
    "customer_id": "12345",
    "priority": 1
  }
}'
{
  "success": true,
  "call": {
    "id": 12345,
    "fromPhone": "+15551234567",
    "toPhone": "+15559876543",
    "status": "IN_PROGRESS",
    "conversationId": 67890,
    "createdAt": "2024-03-15T14:30:00.000Z",
    "updatedAt": "2024-03-15T14:35:00.000Z"
  }
}

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.