---
title: "AuthorityNumberResponse"
url: "https://stage-api-docs.centraldispatch.com/apis/stage-membership-api-1-0-0/versions/50dc9109-f861-4ac9-a838-9ba774c3df98/schemas/AuthorityNumberResponse"
---

> Full API specification: https://stage-api-docs.centraldispatch.com/apis/stage-membership-api-1-0-0/versions/50dc9109-f861-4ac9-a838-9ba774c3df98.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.
```
