---
title: "Update an onboarded carrier contact"
method: PATCH
path: "/onboarded-carrier/contacts/{contact_id}"
tags: ["Onboarded Carriers"]
---

# Update an onboarded carrier contact

`PATCH /onboarded-carrier/contacts/{contact_id}`

Updates an existing onboarded carrier contact for the authenticated customer. Requires a valid JWT token and the appropriate permission. Only the fields provided in the request body will be updated. USDOT updates are not supported by this endpoint; including `usdot` in the PATCH body returns Bad Request before any persistence operation.

## Path parameters

- `contact_id` string, uuid, required

## Request body

- object — Fields to update. At least one must be provided. `usdot` is not accepted in PATCH requests.
  - `name` string, nullable — Contact name.
  - `email` string, nullable — Contact email.
  - `phone` string, nullable — Contact phone number.

## Response `200`

Contact updated 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 or does not own the contact.
- `404` — Contact not found.
- `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)
