---
title: "IngestAttachmentDocumentResponse"
url: "https://developers.zinnia.com/apis/market-connect-order-entry/versions/50f981c3-db50-4358-884f-31eb427255ec/schemas/IngestAttachmentDocumentResponse"
---

> Full API specification: https://developers.zinnia.com/apis/market-connect-order-entry/versions/50f981c3-db50-4358-884f-31eb427255ec.md

# IngestAttachmentDocumentResponse

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Market Connect Order Entry API
  version: 1.0.3
servers:
  - url: https://dev.api.zinnia.io
  - url: https://qa.api.zinnia.io
  - url: https://uat.api.zinnia.io
components:
  schemas:
    IngestAttachmentDocumentResponse:
      type: object
      properties:
        caseId:
          type: string
          description: Case identifier associated with the transaction.
          nullable: true
        isSuccess:
          type: boolean
          description: Indicates whether the ingestion operation was successful.
        message:
          type: string
          description: Human-readable message describing the result.
          nullable: true
        status:
          type: string
          description: Status code of the operation (for example, Success,
            ValidationError, Failure).
          nullable: true
      additionalProperties: false
      example:
        caseId: CA0000188538
        isSuccess: true
        message: Attachment document ingested successfully.
        status: Success
```
