Otter · Schema

SearchUsersResponse

Response body for SearchUsers API call.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
users array The users that matches the search condition.
offsetToken string Opaque token used to fetch the following page. If not set, no more results are available.
View JSON Schema on GitHub

JSON Schema

public-api-search-users-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SearchUsersResponse",
  "description": "Response body for SearchUsers API call.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-search-users-response-schema.json",
  "type": "object",
  "properties": {
    "users": {
      "type": "array",
      "description": "The users that matches the search condition.",
      "items": {
        "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-user-schema.json"
      }
    },
    "offsetToken": {
      "type": "string",
      "description": "Opaque token used to fetch the following page. If not set, no more results are available.",
      "example": "H12MAF2fFaFFFa"
    }
  }
}