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

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