Mindbody · Schema

GetClientPurchasesResponse

Implementation of the 'GetClientPurchasesResponse' model.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
PaginationResponse object Contains information about the pagination used.
Purchases array Contains information that describes the item sold and the payment.
View JSON Schema on GitHub

JSON Schema

public-api-v6-get-client-purchases-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-purchases-response-schema.json",
  "title": "GetClientPurchasesResponse",
  "description": "Implementation of the 'GetClientPurchasesResponse' model.",
  "type": "object",
  "properties": {
    "PaginationResponse": {
      "$ref": "#/components/schemas/PaginationResponse",
      "description": "Contains information about the pagination used."
    },
    "Purchases": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ClientPurchaseRecord"
      },
      "description": "Contains information that describes the item sold and the payment.",
      "example": [
        {}
      ]
    }
  }
}