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

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

# DatasetResponse

## 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:
    DatasetResponse:
      required:
        - Message
        - Status
      type: object
      properties:
        Status:
          minLength: 1
          type: string
          description: Outcome of the dataset lookup. "Success" on success; otherwise the
            backend exception type name (e.g. "NullReferenceException",
            "ItemNotFoundException`2").
        Message:
          minLength: 1
          type: string
          description: Human-readable message describing the outcome. On success a
            confirmation string; on failure the backend error message.
        Data:
          type: string
          description: Dataset payload serialized as a JSON string. On success, a JSON
            array of {Name, Value} option objects. On failure, may be "[]" or
            omitted.
          nullable: true
        InstanceId:
          type: integer
          description: Identifier of the dataset instance returned by the upstream
            service. Present for success and most failures; absent for low-level
            exceptions.
          format: int64
          nullable: true
      additionalProperties: false
```
