Otter · JSON Structure

Public Api Update Storelink Status Request Structure

UpdateStorelinkStatusRequest schema from Public API (Otter Public API).

Type: object Properties: 2 Required: 1
RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

UpdateStorelinkStatusRequest is a JSON Structure definition published by Otter, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status message

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-update-storelink-status-request-structure.json",
  "name": "UpdateStorelinkStatusRequest",
  "description": "UpdateStorelinkStatusRequest schema from Public API (Otter Public API).",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "The new status of the store. ACTIVE: store ready to perform operations again; SUSPENDED: temporarily disables the store; INVALID: current credentials will no longer work, new credentials needed.",
      "enum": [
        "ACTIVE",
        "SUSPENDED",
        "INVALID"
      ],
      "example": "SUSPENDED"
    },
    "message": {
      "nullable": true,
      "type": "string",
      "description": "Optional message to explain the reason of the status update.",
      "example": "Authentication is failing with current credentials.  Suspending store while the retry process is in progress."
    }
  },
  "required": [
    "status"
  ]
}