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

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

# AssignedCarrierV2Page

A token-paginated page of assigned carriers (plain envelope, no HAL wrappers).

## 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
    PageInfo:
      type: object
      description: Pagination metadata for a V2 list response.
      properties:
        size:
          type: integer
          description: Number of items returned in this response (equal to items.length).
        nextToken:
          type:
            - string
            - "null"
          description: Opaque continuation token for the next page, or null on the last
            page.
      required:
        - size
        - nextToken
    AssignedCarrierV2Page:
      type: object
      description: A token-paginated page of assigned carriers (plain envelope, no HAL
        wrappers).
      properties:
        items:
          type: array
          items:
            $ref: "#/components/schemas/AssignedCarrierV2"
        page:
          $ref: "#/components/schemas/PageInfo"
      required:
        - items
        - page
```
