---
title: "InlineResponse4001"
url: "https://developers.zinnia.com/apis/documents-0-3-0/versions/43d1ee7b-44e7-4303-b0cd-ca813c63b625/schemas/InlineResponse4001"
---

> Full API specification: https://developers.zinnia.com/apis/documents-0-3-0/versions/43d1ee7b-44e7-4303-b0cd-ca813c63b625.md

# InlineResponse4001

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Enterprise Documents API
  version: 3.0.0
servers:
  - url: https://dev.api.zinnia.io
    description: Dev Environment
  - url: https://qa.api.zinnia.io
    description: QA Environment
  - url: https://uat.api.zinnia.io
    description: UAT Environment
  - url: https://api.zinnia.io
    description: PROD Environment
components:
  schemas:
    OdataError:
      type: object
      properties:
        code:
          type: string
        message:
          $ref: "#/components/schemas/Message"
        innererror:
          $ref: "#/components/schemas/InnerError"
      required:
        - code
        - message
        - innererror
    Message:
      type: object
      properties:
        lang:
          type: string
        value:
          type: string
      required:
        - lang
        - value
    InnerError:
      type: object
      properties:
        message:
          type: string
        type:
          type: string
        stacktrace:
          type: string
      required:
        - message
        - type
        - stacktrace
    InlineResponse4001:
      type: object
      properties:
        odataError:
          $ref: "#/components/schemas/OdataError"
      required:
        - odataError
```
