Otter · JSON Structure

Public Api Fetch Credentials Event Structure

FetchCredentialsEvent schema from Public API (Otter Public API).

Type: object Properties: 1
RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

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

Properties

credentials

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-fetch-credentials-event-structure.json",
  "name": "FetchCredentialsEvent",
  "description": "FetchCredentialsEvent schema from Public API (Otter Public API).",
  "type": "object",
  "properties": {
    "credentials": {
      "type": "array",
      "description": "Array of existing credentials added so far. It's used by multi step onboarding to verify if other credentials are needed based on existing ones values.",
      "items": {
        "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-existing-credential-schema.json"
      },
      "example": [
        {
          "key": "email",
          "value": "test@email.com"
        },
        {
          "key": "password",
          "value": "test-pwd-1234"
        }
      ]
    }
  }
}