Mindbody · Schema
ProspectStage
Implementation of the 'ProspectStage' model.
FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| Active | boolean | When `true`, indicates that the client is a prospect at the business and has not yet purchased any of the business pricing options. When `false`, indicates that the client has already purchased at lea |
| Description | string | A description of the prospect stage. |
| Id | integer | The ID of the prospect stage assigned to the client. |
JSON Schema
{
"$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-prospect-stage-schema.json",
"title": "ProspectStage",
"description": "Implementation of the 'ProspectStage' model.",
"type": "object",
"properties": {
"Active": {
"type": "boolean",
"description": "When `true`, indicates that the client is a prospect at the business and has not yet purchased any of the business pricing options. When `false`, indicates that the client has already purchased at least one pricing option from the business.",
"example": true
},
"Description": {
"type": "string",
"description": "A description of the prospect stage.",
"example": "Example note for Mindbody Public API."
},
"Id": {
"type": "integer",
"format": "int32",
"description": "The ID of the prospect stage assigned to the client.",
"example": 123456
}
}
}