- 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
Lists client check-ins
GET
/clients/{client_id}/check_ins
Client Check-in
Request
Path Params
client_id
integer <int64>
required
Query Params
from_date
string <date-time>
required
to_date
string <date-time>
required
PageNumber
integer <int32>
optional
PageSize
integer <int32>
optional
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 '/clients//check_ins?from_date&to_date'
Responses
🟢200OK
text/plain
Body
page
object (ListClientCheckInResponsePagedResults)Â
optional
items
array[object (ListClientCheckInResponse) {23}]  | nullÂ
optional
statistics
array[object (ListClientCheckInResponse) {23}]  | nullÂ
optional
total_items
integer <int64>
optional
total_pages
integer <int64>
optional
current_page
integer <int64>
optional
statistic
object (IrregularKtableDTO)Â
optional
client_id
integer <int32>
optional
company_id
integer <int32>
optional
last_visited_date
string <date-time>
optional
last_visited_tenant_id
integer <int32>
optional
last_7d_total_visits
integer <int32> | nullÂ
optional
last_30d_total_visits
integer <int32> | nullÂ
optional
last_90d_total_visits
integer <int32> | nullÂ
optional
updated_date
string <date-time>
optional
Example
{
"page": {
"items": [
{
"id": 0,
"company_id": 0,
"tenant_id": 0,
"client_id": 0,
"client_name": "string",
"client_status": "Prospect",
"client_image": "string",
"home_club_tenant_id": 0,
"event_type": "CheckOut",
"source_type": "SelfCheckIn",
"client_membership_id": 0,
"class_id": 0,
"appointment_id": 0,
"trial_id": 0,
"trainer_id": 0,
"access_status": "Denied",
"access_status_reason": "string",
"checkin_date_time": "2019-08-24T14:15:22Z",
"machine_id": "string",
"sync_event_id": 0,
"track_mode": "StaffWebApp",
"created_by": 0,
"created_date": "2019-08-24T14:15:22Z"
}
],
"statistics": [
{
"id": 0,
"company_id": 0,
"tenant_id": 0,
"client_id": 0,
"client_name": "string",
"client_status": "Prospect",
"client_image": "string",
"home_club_tenant_id": 0,
"event_type": "CheckOut",
"source_type": "SelfCheckIn",
"client_membership_id": 0,
"class_id": 0,
"appointment_id": 0,
"trial_id": 0,
"trainer_id": 0,
"access_status": "Denied",
"access_status_reason": "string",
"checkin_date_time": "2019-08-24T14:15:22Z",
"machine_id": "string",
"sync_event_id": 0,
"track_mode": "StaffWebApp",
"created_by": 0,
"created_date": "2019-08-24T14:15:22Z"
}
],
"total_items": 0,
"total_pages": 0,
"current_page": 0
},
"statistic": {
"client_id": 0,
"company_id": 0,
"last_visited_date": "2019-08-24T14:15:22Z",
"last_visited_tenant_id": 0,
"last_7d_total_visits": 0,
"last_30d_total_visits": 0,
"last_90d_total_visits": 0,
"updated_date": "2019-08-24T14:15:22Z"
}
}
Modified at 2025-03-21 07:23:14