---
title: "ContactInfosV2Response"
url: "https://developer.agentsync.io/apis/producer-sync-api/versions/bdfe7300-4ebb-41e2-95d6-66cc697404bc/schemas/ContactInfosV2Response"
---

> Full API specification: https://developer.agentsync.io/apis/producer-sync-api/versions/bdfe7300-4ebb-41e2-95d6-66cc697404bc.md

# ContactInfosV2Response

## OpenAPI definition

```yaml
openapi: 3.1.1
info:
  title: ProducerSync API
  version: v2.85.1
servers:
  - url: https://api.sandbox.agentsync.io
    description: Sandbox
components:
  schemas:
    ContactInfosBaseResponse:
      type: object
      description: Common contact information fields shared across versions.
      properties:
        id:
          type: integer
          format: int64
          example: 1234567
          description: Unique identifier for the contact information.
        npn:
          type: string
          example: "18551108"
          description: National Producer Number associated with the contact information.
        transactionId:
          type: string
          format: uuid
          example: ae51f10b-8b5e-40ba-98a9-8f860392b344
        type:
          type: string
          enum:
            - BUSINESS_PHONE
            - BUSINESS_EMAIL
            - FAX
          example: BUSINESS_EMAIL
          description: Type of contact information.
        forState:
          type: string
          example: AL
          minLength: 2
          maxLength: 2
          description: State where the contact information applies.
        branchId:
          type: string
          example: ""
          description: Identifier for a related branch, if applicable.
        niprDateUpdated:
          type: string
          format: date
          example: 2024-12-01
          description: Last date NIPR reported an update to this contact information.
        createdAt:
          type: string
          format: date
          example: 2021-04-04
          description: Date of the creation of this record in AgentSync.
        updatedAt:
          type: string
          format: date
          example: 2024-12-02
          description: Date of the most recent update to this record in AgentSync.
        value:
          type: string
          description: The contact information itself (phone number, email, etc.)
          example: apis.rock@agentsync.io
        niprDeleted:
          type: boolean
          example: false
          description: Indicates if the contact information was marked deleted by NIPR.
    SelfLink:
      type: object
      properties:
        self:
          type: object
          properties:
            href:
              type: string
              example: https://api.sandbox.agentsync.io/v1/{endpoint}/{id}
    ContactInfosV2Response:
      allOf:
        - $ref: "#/components/schemas/ContactInfosBaseResponse"
        - type: object
          properties:
            links:
              $ref: "#/components/schemas/SelfLink"
```
