Mindbody · Schema

ClientMemberships

Implementation of the 'ClientMemberships' model.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
ClientId string ID of the client.
Memberships array Contains information about the Client Memberships details.
ErrorMessage string The model property of type str.
View JSON Schema on GitHub

JSON Schema

public-api-v6-client-memberships-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-memberships-schema.json",
  "title": "ClientMemberships",
  "description": "Implementation of the 'ClientMemberships' model.",
  "type": "object",
  "properties": {
    "ClientId": {
      "type": "string",
      "description": "ID of the client.",
      "example": "example-value"
    },
    "Memberships": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ClientMembership"
      },
      "description": "Contains information about the Client Memberships details.",
      "example": [
        {}
      ]
    },
    "ErrorMessage": {
      "type": "string",
      "description": "The model property of type str.",
      "example": "example-value"
    }
  }
}