---
title: "Phones"
url: "https://developers.zinnia.com/apis/new-business-annuity/versions/45a989ab-c3aa-4f85-8f67-f05c41747ed7/schemas/Phones"
---

> Full API specification: https://developers.zinnia.com/apis/new-business-annuity/versions/45a989ab-c3aa-4f85-8f67-f05c41747ed7.md

# Phones

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia New Business Annuity API
  version: 0.6.0
servers:
  - url: https://qa.api.zinnia.io
    description: QA Environment
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://uat.api.zinnia.io
    description: UAT Environment
  - url: https://api.zinnia.io
    description: PROD Environment
components:
  schemas:
    Phones:
      type: object
      required:
        - phoneType
        - countryCode
        - areaCode
        - number
      properties:
        phoneType:
          type: string
          description: This filed capture the type of phone like Home Phone, Work Phone
          enum:
            - BF
            - BP
            - CP
            - H2
            - HF
            - HP
            - MD
        countryCode:
          type: string
          description: Two digit country code
        areaCode:
          type: string
          description: This field stores the telephone Area Code of client address
        number:
          type: string
          description: This field stores the phone number.
        extension:
          type: string
          description: This field stores the Extension number
```
