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

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

# AuthorityNumberResponse

Details of a customer's authority 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:
    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.
```
