- Introduction
- Quickstart
- Webhooks
- Campaign
- Class
- Client
- Retrieves all client for a TenantGET
- Creates a new clientPOST
- Gets client by IDGET
- Gets clients birthday listGET
- Gets clients at riskGET
- Gets client mandatory fieldsGET
- Adds client to blacklistPOST
- Removes client from blacklistPOST
- Updates client detailsPUT
- Used for partial updates of client detailsPATCH
- Changes client representativePOST
- Lists prospectsGET
- Lists ex-clientsGET
- Resets client passwordPOST
- Changes client representative for multiple clientsPOST
- Lists prospect effective date historyGET
- Transfers prospectPOST
- 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
Gets staff schedule
GET
/tenants/{tenant_id}/staff/{staff_id}/availablity_config/{schedule_group_id}
Staff Schedule
Request
Path Params
tenant_id
integer <int32>
required
staff_id
integer <int32>
required
schedule_group_id
integer <int32>
required
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 GET '/tenants//staff//availablity_config/'
Responses
🟢200OK
text/plain
Body
company_id
integer <int32>
optional
tenant_id
integer <int32>
optional
staff_id
integer <int32>
optional
name
string  | nullÂ
optional
start_date
string <date>
optional
end_date
string <date> | nullÂ
optional
group_id
integer <int32>
optional
appointment_catagories
array[object (AppointmentCategories) {2}]  | nullÂ
optional
appt_type_id
integer <int32>
optional
max_appointments_per_day
integer <int32>
optional
type_weekday
array[object (WeekDayRules) {2}]  | nullÂ
optional
wday
enum<string>Â <int32>
optional
Sunday
-Monday
-Tuesday
-Wednesday
-Thursday
-Friday
-Saturday
-Allowed values:
SundayMondayTuesdayWednesdayThursdayFridaySaturday
intervals
array[object (Intervals) {4}]  | nullÂ
optional
type_date
array[object (DateRules) {2}]  | nullÂ
optional
date
string <date>
optional
intervals
array[object (Intervals) {4}]  | nullÂ
optional
is_tour_schedule
booleanÂ
optional
created_by
integer <int32>
optional
updated_by
integer <int32>
optional
created_date
string <date-time>
optional
updated_date
string <date-time>
optional
track_mode
enum<string>Â
optional
StaffWebApp
-StaffMobileApp
-ClientMobileApp
-ClientPurchasePortal
-ClientWebsiteWidget
-FFMavrick
-ClientWebSignup
-FFHangfireJob
-Widget
-Allowed values:
StaffWebAppStaffMobileAppClientMobileAppClientPurchasePortalClientWebsiteWidgetFFMavrickClientWebSignupFFHangfireJobWidget
Example
{
"company_id": 0,
"tenant_id": 0,
"staff_id": 0,
"name": "string",
"start_date": "2019-08-24",
"end_date": "2019-08-24",
"group_id": 0,
"appointment_catagories": [
{
"appt_type_id": 0,
"max_appointments_per_day": 0
}
],
"type_weekday": [
{
"wday": "Sunday",
"intervals": [
{
"From": "string",
"to": "string",
"is_available": true,
"reason_for_unavailability": "string"
}
]
}
],
"type_date": [
{
"date": "2019-08-24",
"intervals": [
{
"From": "string",
"to": "string",
"is_available": true,
"reason_for_unavailability": "string"
}
]
}
],
"is_tour_schedule": true,
"created_by": 0,
"updated_by": 0,
"created_date": "2019-08-24T14:15:22Z",
"updated_date": "2019-08-24T14:15:22Z",
"track_mode": "StaffWebApp"
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
Modified at 2025-03-21 07:23:14