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

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

# ProducerPhoneV2

A producer's phone number.

## 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:
    ProducerPhoneV2:
      type: object
      description: A producer's phone number.
      properties:
        id:
          type: string
          format: uuid
        number:
          type: string
          example: "5551234567"
        extension:
          type: string
        type:
          type: string
          description: The phone kind.
          enum:
            - CELL
            - BUSINESS
            - RESIDENT
            - FAX
        preferred:
          type: boolean
          description: Whether this is the producer's preferred number.
```
