Mindbody · Schema

IssueResponse

Implementation of the 'IssueResponse' model. POST UserToken/Issue successful response

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
TokenType string The model property of type str.
AccessToken string The authentication token value.
Expires string Token expiration in UTC.
User object Contains information about the user represented by the access token.
View JSON Schema on GitHub

JSON Schema

public-api-v6-issue-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-issue-response-schema.json",
  "title": "IssueResponse",
  "description": "Implementation of the 'IssueResponse' model. POST UserToken/Issue successful response",
  "type": "object",
  "properties": {
    "TokenType": {
      "type": "string",
      "description": "The model property of type str.",
      "example": "example-value"
    },
    "AccessToken": {
      "type": "string",
      "description": "The authentication token value.",
      "example": "example-value"
    },
    "Expires": {
      "type": "string",
      "format": "date-time",
      "description": "Token expiration in UTC.",
      "example": "2026-05-28T14:30:00Z"
    },
    "User": {
      "$ref": "#/components/schemas/User",
      "description": "Contains information about the user represented by the access token."
    }
  }
}