curl --location --request POST 'https://connect.dispatchable.com/loads/api/v1/shipperLoad' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"data_source_uuid": "ed4982be-5116-4dbe-9df3-0e0aa934a493",
"company_uuid": "0d3859cd-9aff-4287-a873-65e58cf7e7f0",
"source_uid": "5STx9lVCOZ",
"origin_city": "Los Angeles",
"origin_state": "CA",
"origin_zip": "90001",
"destination_city": "New York",
"destination_state": "NY",
"destination_zip": "10001",
"trailer_type": "OPEN",
"load_type": "auto_transport",
"first_avail": "2025-07-01",
"customer_first_name": "Jane",
"customer_last_name": "Doe",
"customer_phone_1": "+15555555555",
"customer_email": "colinroydixon@gmail.com",
"vehicles": [
{
"vehicle_year": "2022",
"vehicle_make": "Toyota",
"vehicle_model": "Camry",
"vehicle_type": "CAR"
},
{
"vehicle_year": "2021",
"vehicle_make": "Ford",
"vehicle_model": "F-150",
"vehicle_type": "PICKUP"
}
]
}'