Skip to main content
POST
/
carriers
cURL
curl --request POST \
  --url https://api.vooma.ai/v0/carriers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "carrier": {
    "name": "<string>",
    "equipment": [
      {
        "equipment": {
          "type": "BOX_TRUCK",
          "equipmentLength": {
            "value": 123,
            "units": "IN"
          },
          "temperature": {
            "units": "F",
            "max": 123,
            "min": 123
          },
          "description": "<string>"
        },
        "trailerNumber": "<string>",
        "truckNumber": "<string>"
      }
    ],
    "contacts": [
      {
        "contact": {
          "carrierId": "<string>",
          "customerId": "<string>",
          "email": "<string>",
          "phone": "<string>",
          "name": "<string>",
          "id": "<string>"
        },
        "type": "DRIVER"
      }
    ],
    "dotNumber": "<string>",
    "mcNumber": "<string>"
  }
}
'
{
  "name": "<string>",
  "equipment": [
    {
      "equipment": {
        "type": "BOX_TRUCK",
        "equipmentLength": {
          "value": 123,
          "units": "IN"
        },
        "temperature": {
          "units": "F",
          "max": 123,
          "min": 123
        },
        "description": "<string>"
      },
      "trailerNumber": "<string>",
      "truckNumber": "<string>"
    }
  ],
  "contacts": [
    {
      "contact": {
        "carrierId": "<string>",
        "customerId": "<string>",
        "email": "<string>",
        "phone": "<string>",
        "name": "<string>",
        "id": "<string>"
      },
      "type": "DRIVER"
    }
  ],
  "dotNumber": "<string>",
  "mcNumber": "<string>",
  "id": "<string>"
}
Beta Feature: This functionality is currently in beta. You may experience changes or limited support as we continue to improve it.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
carrier
object
required

Response

200 - application/json

Ok

name
string
required
equipment
object[]
contacts
object[]
dotNumber
string
mcNumber
string
id
string