Mindbody · Schema

GetTransactionsResponse

Implementation of the 'GetTransactionsResponse' model. Get transactions response properties

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
PaginationResponse object Contains information about the pagination used.
Transactions array Contains the transaction objects, each of which describes the transaction details for a purchase event.
View JSON Schema on GitHub

JSON Schema

public-api-v6-get-transactions-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-transactions-response-schema.json",
  "title": "GetTransactionsResponse",
  "description": "Implementation of the 'GetTransactionsResponse' model. Get transactions response properties",
  "type": "object",
  "properties": {
    "PaginationResponse": {
      "$ref": "#/components/schemas/PaginationResponse",
      "description": "Contains information about the pagination used."
    },
    "Transactions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Transaction"
      },
      "description": "Contains the transaction objects, each of which describes the transaction details for a purchase event.",
      "example": [
        {}
      ]
    }
  }
}