Otter · JSON Structure

Public Api Review Reply Request Structure

The request to reply to a review.

Type: object Properties: 5
RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

ReviewReplyRequest is a JSON Structure definition published by Otter, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

reviewId externalStoreId serviceSlug replyText scheduledAt

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-structure/public-api-review-reply-request-structure.json",
  "name": "ReviewReplyRequest",
  "description": "The request to reply to a review.",
  "type": "object",
  "properties": {
    "reviewId": {
      "type": "string",
      "description": "The review ID.",
      "example": "review-56e9-46be"
    },
    "externalStoreId": {
      "type": "string",
      "description": "External store ID of the review you are responding to. Fails the requests if invalid external store ID is passed.",
      "example": "order-1fa4-479c"
    },
    "serviceSlug": {
      "type": "string",
      "description": "The slug of the service for the review.",
      "example": "ubereats"
    },
    "replyText": {
      "type": "string",
      "description": "The reply text.",
      "example": "Thank you very much."
    },
    "scheduledAt": {
      "type": "double",
      "description": "The scheduled timestamp (seconds) to reply to the review.",
      "example": 1697727006,
      "nullable": true
    }
  }
}