Mindbody · Schema

ResponseDetails

Implementation of the 'ResponseDetails' model. Contains information about the response message detail.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
Status string Contains information about the response status.
TransactionId string The unique transaction ID.
Message string Contains information about the response message detail.
View JSON Schema on GitHub

JSON Schema

public-api-v6-response-details-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-response-details-schema.json",
  "title": "ResponseDetails",
  "description": "Implementation of the 'ResponseDetails' model. Contains information about the response message detail.",
  "type": "object",
  "properties": {
    "Status": {
      "type": "string",
      "description": "Contains information about the response status.",
      "example": "Active"
    },
    "TransactionId": {
      "type": "string",
      "description": "The unique transaction ID.",
      "example": "example-value"
    },
    "Message": {
      "type": "string",
      "description": "Contains information about the response message detail.",
      "example": "example-value"
    }
  }
}