---
title: "ProducerPhoneV2"
url: "https://developer.agentsync.io/apis/contracting-hierarchies-api/versions/39b33a90-6aa5-4a42-85f4-8b57030fc5de/schemas/ProducerPhoneV2"
---

> Full API specification: https://developer.agentsync.io/apis/contracting-hierarchies-api/versions/39b33a90-6aa5-4a42-85f4-8b57030fc5de.md

# ProducerPhoneV2

A producer's phone number.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: AgentSync Contracting & Hierarchies API
  version: v0.1146.2
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.
```
