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

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

# CustomerSearchResponse

A customer record.

## 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.
    AddressResponse:
      type: object
      properties:
        streetAddress:
          type: string
          description: The street address.
          nullable: true
          example: 345 W Elm St.
        streetAddress2:
          type: string
          description: Additional street address line.
          nullable: true
          example: 2nd Floor
        city:
          type: string
          description: The city.
          nullable: true
          example: Anaheim
        state:
          type: string
          description: The state.
          nullable: true
          example: CA
        zipcode:
          type: string
          description: The ZIP code. Must be a valid United States ZIP code or Canadian
            postal code.
          nullable: true
          example: "92802"
        type:
          type: string
          description: The type of address (e.g., PRIMARY, LOCAL, BILLING).
          nullable: true
          example: PRIMARY
      description: Details of a customer's address.
    AuthorityNumberResponse:
      type: object
      properties:
        number:
          type: string
          description: The authority number assigned to the customer.
          nullable: true
          example: DL 01-00673-10
        verified:
          type: boolean
          description: Indicates whether the authority number is verified.
          nullable: true
          example: true
        type:
          type: string
          description: The type of authority number.
          nullable: true
          example: DEALER_LICENSE
      description: Details of a customer's authority number.
    CustomerSearchResponse:
      type: object
      properties:
        customerName:
          type: string
          description: The customer's name.
          nullable: true
          example: Acu Logistics
        customerId:
          type: string
          description: The Central Dispatch customer ID of the customer.
          nullable: true
          example: d5c62b14-cbd1-11ee-9a0e-0242ac110002
        email:
          type: string
          description: The email address of the customer.
          nullable: true
          example: trans-port@notgmail.com
        phoneNumbers:
          type: array
          items:
            $ref: "#/components/schemas/PhoneResponse"
          description: A collection of phone numbers associated with the customer.
          nullable: true
        addresses:
          type: array
          items:
            $ref: "#/components/schemas/AddressResponse"
          description: A collection of addresses associated with the customer.
          nullable: true
        customerAuthorityNumbers:
          type: array
          items:
            $ref: "#/components/schemas/AuthorityNumberResponse"
          description: A collection of authority numbers associated with the customer.
          nullable: true
      description: A customer record.
```
