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

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

# StatusError

An error occurred, and the request could not be completed.

## 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:
    StatusError:
      type: object
      properties:
        status:
          type: string
          description: The status of the response.
          nullable: true
          example: error
        errors:
          type: array
          items:
            type: string
          description: A collection of error messages.
          nullable: true
          example:
            - The issue happened because something is wrong.
      description: An error occurred, and the request could not be completed.
```
