Mindbody · Schema

GetClientServicesResponse

Implementation of the 'GetClientServicesResponse' model. Contains the response for the GetClientServices endpoint.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
PaginationResponse object Contains information about the pagination used.
ClientServices array Contains information about client pricing options, including activation behavior details. Each item includes ActivationType and CannotPayForClassesBeforeActivation fields to help determine booking eli
View JSON Schema on GitHub

JSON Schema

public-api-v6-get-client-services-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-get-client-services-response-schema.json",
  "title": "GetClientServicesResponse",
  "description": "Implementation of the 'GetClientServicesResponse' model. Contains the response for the GetClientServices endpoint.",
  "type": "object",
  "properties": {
    "PaginationResponse": {
      "$ref": "#/components/schemas/PaginationResponse",
      "description": "Contains information about the pagination used."
    },
    "ClientServices": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ClientServiceWithActivationType"
      },
      "description": "Contains information about client pricing options, including activation behavior details. Each item includes ActivationType and CannotPayForClassesBeforeActivation fields to help determine booking eligibility based on the pricing option's activation configuration.",
      "example": [
        {}
      ]
    }
  }
}