Flipdish · Schema

PendingInvitation

An invitation to join a team at Flipdish.

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
AppName string The name of the brand that you have been invited to join.
Email string The email address that the invitation was sent to.
Otc string The one-time code that can be used to accept the invitation.
CreatedAt string The time that the invitation was created.
View JSON Schema on GitHub

JSON Schema

customers-pending-invitation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/customers-pending-invitation-schema.json",
  "title": "PendingInvitation",
  "description": "An invitation to join a team at Flipdish.",
  "type": "object",
  "properties": {
    "AppName": {
      "description": "The name of the brand that you have been invited to join.",
      "type": "string",
      "example": "Example Name"
    },
    "Email": {
      "description": "The email address that the invitation was sent to.",
      "type": "string",
      "example": "[email protected]"
    },
    "Otc": {
      "description": "The one-time code that can be used to accept the invitation.",
      "type": "string",
      "example": "string"
    },
    "CreatedAt": {
      "format": "date-time",
      "description": "The time that the invitation was created.",
      "type": "string",
      "example": "2026-06-02T12:00:00Z"
    }
  }
}