---
title: "Create an onboarded carrier contact"
method: POST
path: "/onboarded-carrier/contacts"
tags: ["Onboarded Carriers"]
---

# Create an onboarded carrier contact

`POST /onboarded-carrier/contacts`

Creates a new onboarded carrier contact for the authenticated customer. Requires a valid JWT token and the appropriate permission. The `usdot` value must contain digits only, be greater than zero, and be at most 9 digits after normalization.

## Request body

- object
  - `usdot` string, required — Carrier USDOT number. Must contain digits only, be greater than zero, and be at most 9 digits. Leading zeroes are normalized before persistence.
  - `name` string, nullable — Contact name.
  - `phone` string, nullable — Contact phone number.
  - `email` string, nullable — Contact email address.

## Response `200`

Contact created successfully.

- object
  - `contact` object
    - `id` string, uuid
    - `name` string
    - `phone` string
    - `email` string

## Other responses

- `400` — Bad Request – Missing or invalid fields.
- `401` — Unauthorized – Invalid or missing Access-Token.
- `403` — Forbidden – The user lacks required permission.
- `500` — Internal Server Error.

---

[API](https://skmtc.net/genlogs/apis/auth-api-create-token.md) · [All operations](https://skmtc.net/genlogs/apis/auth-api-create-token/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/genlogs/auth-api-create-token/versions/bf34c2431a21/schema)
