Mindbody · Schema

RemoveClientsFromClassesResponse

Implementation of the 'RemoveClientsFromClassesResponse' model. Remove Clients From Classes Response

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
PaginationResponse object Contains information about the pagination used.
Classes array Contains information about the classes from which the clients were removed.
Errors array Contains information about the errors
View JSON Schema on GitHub

JSON Schema

public-api-v6-remove-clients-from-classes-response-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-remove-clients-from-classes-response-schema.json",
  "title": "RemoveClientsFromClassesResponse",
  "description": "Implementation of the 'RemoveClientsFromClassesResponse' model. Remove Clients From Classes Response",
  "type": "object",
  "properties": {
    "PaginationResponse": {
      "$ref": "#/components/schemas/PaginationResponse",
      "description": "Contains information about the pagination used."
    },
    "Classes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Class"
      },
      "description": "Contains information about the classes from which the clients were removed.",
      "example": [
        {}
      ]
    },
    "Errors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ApiError"
      },
      "description": "Contains information about the errors",
      "example": [
        {}
      ]
    }
  }
}