Thanx · Schema

PartnerUser

PartnerUser schema from Thanx Partner API

RestaurantLoyaltyGuest EngagementMarketingCRMOnline OrderingWebhooksPointsRewardsCampaigns

Properties

Name Type Description
id string
email string
phone string
first_name string
last_name string
View JSON Schema on GitHub

JSON Schema

partner-api-partner-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PartnerUser",
  "description": "PartnerUser schema from Thanx Partner API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/thanx/refs/heads/main/json-schema/partner-api-partner-user-schema.json",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "92b7b0dac4"
    },
    "email": {
      "type": "string",
      "format": "email",
      "example": "[email protected]"
    },
    "phone": {
      "type": "string",
      "example": "+14158672345"
    },
    "first_name": {
      "type": "string",
      "example": "Jane"
    },
    "last_name": {
      "type": "string",
      "example": "Smith"
    }
  }
}