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

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

# SubmitTransactionResponse

## 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:
    SubmitTransactionResponse:
      required:
        - message
        - transactionId
      type: object
      properties:
        transactionId:
          minLength: 1
          type: string
          description: The unique identifier for the submitted transaction. Echoed back
            from the request.
        message:
          minLength: 1
          type: string
          description: Human-readable confirmation that the submit request was accepted.
      additionalProperties: false
      example:
        transactionId: "12345"
        message: Transaction submitted successfully
```
