Mindbody · Schema

ClientSuspensionInfo

Implementation of the 'ClientSuspensionInfo' model. A Client DTO with Suspension Information

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
BookingSuspended boolean When 'true', indicates that the client is suspended from booking
SuspensionStartDate string Indicates the Date that BookingSuspension starts 'YYYY-MM-DD'
SuspensionEndDate string Indicates the Date that BookingSuspension ends 'YYYY-MM-DD'
View JSON Schema on GitHub

JSON Schema

public-api-v6-client-suspension-info-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-client-suspension-info-schema.json",
  "title": "ClientSuspensionInfo",
  "description": "Implementation of the 'ClientSuspensionInfo' model. A Client DTO with Suspension Information",
  "type": "object",
  "properties": {
    "BookingSuspended": {
      "type": "boolean",
      "description": "When 'true', indicates that the client is suspended from booking",
      "example": true
    },
    "SuspensionStartDate": {
      "type": "string",
      "description": "Indicates the Date that BookingSuspension starts 'YYYY-MM-DD'",
      "example": "example-value"
    },
    "SuspensionEndDate": {
      "type": "string",
      "description": "Indicates the Date that BookingSuspension ends 'YYYY-MM-DD'",
      "example": "example-value"
    }
  }
}