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

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

# SaveCommentRequest

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Market Connect Order Entry API
  version: 1.0.4
servers:
  - url: https://dev.api.zinnia.io
  - url: https://qa.api.zinnia.io
  - url: https://uat.api.zinnia.io
components:
  schemas:
    SaveCommentRequest:
      required:
        - commentText
        - transactionId
      type: object
      properties:
        appSubIndicator:
          type: string
          description: Indicator identifying whether the comment applies to the
            application or sub-application
          nullable: true
        commentSource:
          type: string
          description: Source system or user group that authored the comment
          nullable: true
        commentText:
          minLength: 1
          type: string
          description: Free-form comment text
        statusAtStep:
          type: string
          description: Status code of the transaction at the step the comment was added
          nullable: true
        statusDisplayName:
          type: string
          description: Display name for the status at the step the comment was added
          nullable: true
        stepTitle:
          type: string
          description: Title of the wizard step the comment was added on
          nullable: true
        transactionId:
          minLength: 1
          pattern: ^[1-9][0-9]*$
          type: string
          description: Unique identifier of the transaction the comment belongs to
            (positive integer encoded as a string)
      additionalProperties: false
      example:
        appSubIndicator: App
        commentSource: OrderEntryUI
        commentText: Customer requested a follow-up call before submission.
        statusAtStep: InProgress
        statusDisplayName: In Progress
        stepTitle: Owner Information
        transactionId: "1125715"
```
