---
title: "PhoneResponse"
url: "https://api-docs.centraldispatch.com/apis/membership-api-1-0-0/versions/565f78cb-7a6d-42ef-bd8b-1af2d1394eef/schemas/PhoneResponse"
---

> Full API specification: https://api-docs.centraldispatch.com/apis/membership-api-1-0-0/versions/565f78cb-7a6d-42ef-bd8b-1af2d1394eef.md

# PhoneResponse

Details of a customer's phone number.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Membership API
  version: 1.0.0
servers:
  - url: https://membership-api.centraldispatch.com
    description: Production server
components:
  schemas:
    PhoneResponse:
      type: object
      properties:
        phoneNumber:
          type: string
          description: The phone number of the contact.
          nullable: true
          example: 949-555-1323
        type:
          type: string
          description: The type of phone number (e.g., BILLING, LISTING, LOCAL).
          nullable: true
          example: LOCAL
        extension:
          type: string
          description: The phone number extension.
          nullable: true
          example: "303"
        notes:
          type: string
          description: Additional notes about the phone number.
          nullable: true
          example: Primary contact number
      description: Details of a customer's phone number.
```
