- Introduction
- Quickstart
- Webhooks
- Campaign
- Class
- Client
- Retrieves all client for a Tenant
- Creates a new client
- Gets client by ID
- Gets clients birthday list
- Gets clients at risk
- Gets client mandatory fields
- Adds client to blacklist
- Removes client from blacklist
- Updates client details
- Used for partial updates of client details
- Changes client representative
- Lists prospects
- Lists ex-clients
- Resets client password
- Changes client representative for multiple clients
- Lists prospect effective date history
- Transfers prospect
- Company
- Invoice
- Organisation
- Search
- Tax
- Tenant
- Appointments
- Create new appointment
- List appointments
- Change client membership in appointment
- Get appointment
- Update appointment
- Mark client as checked in
- Mark client as no-show
- Substitute coach for appointment
- Reschedule appointment
- Cancel appointment
- List appointments by client ID
- Create appointment complimentory session
- Create appointment
- Reschedule appointment
- Get appointment
- Appointment Types
- Authentication
- Automation
- Call Transactions
- Charge Categories
- Charge Master
- Recurring Class
- Class Booking
- Class Complimentory
- Class Types
- Company level class types
- Client Communication
- Client Tasks
- Client Sales
- Client Waivers
- Client Sessions
- Client Referrals
- Client Offers
- Client Export
- Client Billing
- Client Check-in
- Client Credit Balance
- Client Documents
- Client Invoices
- Client Membership
- Client Open API
- Client Payments
- Client Subscriptions
- Client Memberships
- Client Subscription Cancellation
- Client Subscription Freeze
- Client Trials
- Client Upgrade
- Balance Write Off
- Email Template
- Email Template - Franchise
- Create email template at franchise level
- Get list of email templates at franchise level
- Update email template at franchise level
- Get email template at franchise level
- Delete email template at franchise level
- Mark email template as inactive at franchise level
- Mark email template as active at franchise level
- Email Template - Tenant
- Franchise Groups
- Payment Methods
- Invoices
- Offer Master
- Online Signup
- Subscription
- Sales
- Staff Availability
- List staff availability
- List staff availability by appointment category
- List next available slots by appointment category
- Check staff availability
- Check staff availability for appointment category
- Check staff availability for recurring schedule
- Check staff availability for recurring schedule
- Get staff scheduled unavailability
- List staff availability for tours
- Opportunities
- Opportunity Stage Master
- Payments
- Refunds
- Reports
- Report Filter Schedules
- Access Requests
- Rooms
- Sales Returns
- Email Communication
- SMS
- Service Categories
- Staff Management
- Staff Appointment Type Link
- Staff Notifications
- Staff Schedule
- Subscription Plans
- Subscription Signup
- Tasks
- Task Categories
- Task Open API
- Trial Master
Create recurring class
POST
/tenants/{tenant_id}/recurring_classes
Recurring Class
Request
Path Params
tenant_id
integer <int32>
required
Body Params application/json
class_type_id
integer <int32>
optional
comments
string  | nullÂ
optional
room_id
integer <int32>
optional
sub_type_id
integer <int32>
optional
max_capacity
integer <int32>
optional
max_waitlist
integer <int32>
optional
is_virtual
booleanÂ
optional
virtual_url
string  | nullÂ
optional
coach_id
integer <int32>
optional
is_dropin_allowed
booleanÂ
optional
place_id
string  | nullÂ
optional
latitude
number <double> | nullÂ
optional
longitude
number <double> | nullÂ
optional
accepts_trial
booleanÂ
optional
start_date
string <date>
optional
start_time
string  | nullÂ
optional
recurring_rule
string  | nullÂ
optional
Example
{
"class_type_id": 0,
"comments": "string",
"room_id": 0,
"sub_type_id": 0,
"max_capacity": 0,
"max_waitlist": 0,
"is_virtual": true,
"virtual_url": "string",
"coach_id": 0,
"is_dropin_allowed": true,
"place_id": "string",
"latitude": 0,
"longitude": 0,
"accepts_trial": true,
"start_date": "2019-08-24",
"start_time": "string",
"recurring_rule": "string"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/tenants//recurring_classes' \
--header 'Content-Type: application/json' \
--data-raw '{
"class_type_id": 0,
"comments": "string",
"room_id": 0,
"sub_type_id": 0,
"max_capacity": 0,
"max_waitlist": 0,
"is_virtual": true,
"virtual_url": "string",
"coach_id": 0,
"is_dropin_allowed": true,
"place_id": "string",
"latitude": 0,
"longitude": 0,
"accepts_trial": true,
"start_date": "2019-08-24",
"start_time": "string",
"recurring_rule": "string"
}'
Responses
🟢200OK
text/plain
Body
id
nullÂ
optional
info
array[object (ValidationError) {6}]  | nullÂ
optional
severity
enum<string>Â
optional
Error
-Warning
-Info
-Allowed values:
ErrorWarningInfo
errorCode
string  | nullÂ
optional
errorMessage
string  | nullÂ
optional
identifier
string  | nullÂ
optional
helptext
string  | nullÂ
optional
jsonObject
nullÂ
optional
Example
{
"id": null,
"info": [
{
"severity": "Error",
"errorCode": "string",
"errorMessage": "string",
"identifier": "string",
"helptext": "string",
"jsonObject": null
}
]
}
🟠400Bad Request
🟠401Unauthorized
Modified at 2025-03-21 07:23:14