Mindbody · JSON Structure

Public Api V6 User Structure

Implementation of the 'User' model.

Type: object Properties: 4
FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

User is a JSON Structure definition published by Mindbody, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Id FirstName LastName Type

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/mindbody/refs/heads/main/json-structure/public-api-v6-user-structure.json",
  "name": "User",
  "description": "Implementation of the 'User' model.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "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"
    }
  }
}