Mindbody · Schema

User

Implementation of the 'User' model.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
Id integer The user’s ID at the business. This is always 0 for Admin and Owner type users.
FirstName string The user’s first name.
LastName string The user’s last name.
Type string The user’s type. Possible values are: * Staff * Owner * Admin
View JSON Schema on GitHub

JSON Schema

public-api-v6-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mindbody/refs/heads/main/json-schema/public-api-v6-user-schema.json",
  "title": "User",
  "description": "Implementation of the 'User' model.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "integer",
      "format": "int32",
      "description": "The user\u2019s ID at the business. This is always 0 for Admin and Owner type users.",
      "example": 123456
    },
    "FirstName": {
      "type": "string",
      "description": "The user\u2019s first name.",
      "example": "Alex"
    },
    "LastName": {
      "type": "string",
      "description": "The user\u2019s last name.",
      "example": "Lane"
    },
    "Type": {
      "type": "string",
      "description": "The user\u2019s type. Possible values are: * Staff * Owner * Admin",
      "example": "example-value"
    }
  }
}