---
title: "AssignedCarrierV2"
url: "https://developer.agentsync.io/apis/contracting-hierarchies-api/versions/40f58935-396e-4da4-8f47-1587041e1b16/schemas/AssignedCarrierV2"
---

> Full API specification: https://developer.agentsync.io/apis/contracting-hierarchies-api/versions/40f58935-396e-4da4-8f47-1587041e1b16.md

# AssignedCarrierV2

A carrier assigned to the calling customer's account.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: AgentSync Contracting & Hierarchies API
  version: v1.7.6
servers:
  - url: https://api.sandbox.agentsync.io/contracting
    description: Sandbox
  - url: https://api.agentsync.io/contracting
    description: Production
components:
  schemas:
    AssignedCarrierV2:
      type: object
      description: A carrier assigned to the calling customer's account.
      properties:
        id:
          type: string
          format: uuid
          description: The carrier's identifier.
        name:
          type: string
        tin:
          type: string
          description: Tax identification number.
        npn:
          type: string
          description: National Producer Number.
        naic:
          type: string
          description: NAIC code.
        coCode:
          type: integer
          format: int64
          description: NAIC company code.
        typeId:
          type: string
          format: uuid
        typeName:
          type: string
          description: The carrier's organization type (inlined).
        statusId:
          type: string
          format: uuid
        statusName:
          type: string
          description: The carrier's status (inlined).
        createdAt:
          type: string
          format: date-time
          description: RFC3339 UTC creation timestamp.
        updatedAt:
          type: string
          format: date-time
          description: RFC3339 UTC last-modified timestamp.
      required:
        - id
        - name
```
