Mindbody · Schema

GetProductsResponse

Implementation of the 'GetProductsResponse' model. Represents the response object for retrieving products.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
PaginationResponse object Contains information about the pagination used.
Products array Contains information about the products.
View JSON Schema on GitHub

JSON Schema

public-api-v6-get-products-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-products-response-schema.json",
  "title": "GetProductsResponse",
  "description": "Implementation of the 'GetProductsResponse' model. Represents the response object for retrieving products.",
  "type": "object",
  "properties": {
    "PaginationResponse": {
      "$ref": "#/components/schemas/PaginationResponse",
      "description": "Contains information about the pagination used."
    },
    "Products": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Product"
      },
      "description": "Contains information about the products.",
      "example": [
        {}
      ]
    }
  }
}