# Scheduleonce

Scheduling platform for capturing, qualifying, and engaging with inbound leads

- **Category:** scheduling & booking
- **Auth:** API_KEY, OAUTH2
- **Composio Managed App Available?** No
- **Tools:** 27
- **Triggers:** 0
- **Slug:** `SCHEDULEONCE`
- **Version:** 20260227_00

## Tools

### Book Time Slot

**Slug:** `SCHEDULEONCE_BOOK_TIME_SLOT`

Tool to book a time slot on a booking calendar in OnceHub. Use when you need to schedule a meeting by booking one of the available time slots. First retrieve available time slots using 'Get available time slots', then use this tool to book one of those slots with guest information.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier of the booking calendar to book a time slot for (e.g., 'BKC-ZK6W94KE6W') |
| `start_time` | string | Yes | The date and time of the time slot to book in ISO 8601 format. Must be in UTC timezone (e.g., '2025-12-22T04:30:00.000Z'). Use this with a time slot retrieved from the 'Get available time slots' endpoint. |
| `booking_form` | object | Yes | Form data containing guest information including name, email, and optional fields |
| `custom_fields` | array | No | Array of custom field objects with 'name' and 'value' properties |
| `location_type` | string | No | Type of location for the meeting. Can only select from locations offered within the available time slots. |
| `location_value` | string | No | Location-specific value. For virtual meetings: conference type (e.g., 'google_meet', 'zoom'). For phone: guest's phone number. For physical locations: address ID (e.g., 'ADD-1234'). |
| `guest_time_zone` | string | Yes | The guest's timezone in IANA format (e.g., 'America/New_York', 'Europe/London') |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Cancel Booking

**Slug:** `SCHEDULEONCE_CANCEL_BOOKING`

Tool to cancel a booking by ID in OnceHub. Use when you need to cancel an existing booking, optionally providing a cancellation reason and controlling whether to send cancellation email notifications.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier of the booking to cancel (e.g., 'BKNG-J4FR05BKEWEX') |
| `cancellation_reason` | string | No | The reason for canceling the booking. This will be stored in the cancel_reschedule_information.reason field of the booking object. |
| `send_cancellation_email` | boolean | No | Determines whether a cancellation email notification should be sent to the customer and other participants. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Contact

**Slug:** `SCHEDULEONCE_CREATE_CONTACT`

Tool to create a new contact in ScheduleOnce. Use when you need to add a contact with email, first name, and last name. Additional fields like company, phone, and address details can be optionally provided.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `city` | string | No | City of the contact. |
| `email` | string | Yes | Email address of the contact (required). |
| `phone` | string | No | Phone number of the contact. |
| `state` | string | No | State or province of the contact. |
| `company` | string | No | Company name associated with the contact. |
| `country` | string | No | Country of the contact. |
| `timezone` | string | No | Timezone of the contact. |
| `job_title` | string | No | Job title of the contact. |
| `last_name` | string | Yes | Last name of the contact (required). |
| `post_code` | string | No | Postal or ZIP code of the contact. |
| `first_name` | string | Yes | First name of the contact (required). |
| `salutation` | string | No | Salutation/title for the contact. |
| `mobile_phone` | string | No | Mobile phone number of the contact. |
| `street_address` | string | No | Street address of the contact. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create One-Time Link for Booking Calendar

**Slug:** `SCHEDULEONCE_CREATE_ONE_TIME_LINK_FOR_BOOKING_CALENDAR`

Tool to create a one-time booking link for a booking calendar in OnceHub. Use when you need to generate a unique, single-use booking link for a customer. One-time links are good for one booking only and automatically expire after one year if not used. The booking calendar must be published to create one-time links.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier of the booking calendar to create a one-time link for (e.g., 'BKC-ZK6W94KE6W'). The booking calendar must be published. |
| `guest` | object | No | Model for guest information to personalize the one-time link. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create User

**Slug:** `SCHEDULEONCE_CREATE_USER`

Tool to create a new user account in OnceHub. Use when you need to add a new user with first name, last name, and email. Optional role can be specified.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `email` | string | Yes | Email address of the user (required). |
| `last_name` | string | Yes | Last name of the user (required). |
| `role_name` | string | No | Role name for the user (e.g., 'Member', 'Admin'). If not specified, the default role will be assigned. |
| `first_name` | string | Yes | First name of the user (required). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Contact

**Slug:** `SCHEDULEONCE_DELETE_CONTACT`

Tool to delete a contact by ID from OnceHub. Use when you need to permanently remove a contact from the system.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier of the contact to delete (e.g., 'CTC-GLJV69KW2LU30W') |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete User

**Slug:** `SCHEDULEONCE_DELETE_USER`

Tool to delete a user account from OnceHub. Use when you need to permanently remove a user from the system.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier of the user to delete (e.g., 'USR-7R1P5GMSXE') |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Available Time Slots

**Slug:** `SCHEDULEONCE_GET_AVAILABLE_TIME_SLOTS`

Tool to retrieve available time slots for a booking calendar from OnceHub. Use when you need to check availability for scheduling appointments within a specific date range (maximum 30 days). Returns real-time availability based on booking rules and participant calendars.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The ID of the booking calendar to query for available time slots. Format: 'BKC-' followed by alphanumeric string (e.g., 'BKC-ZK6W94KE6W') |
| `end_time` | string | Yes | The end of the time range to search for available slots. Must be in ISO 8601 full form UTC format (e.g., '2024-11-29T09:30:00.000Z' or '2025-12-29T23:59:59Z'). Must be within 30 days of start_time. |
| `start_time` | string | Yes | The beginning of the time range to search for available slots. Must be in ISO 8601 full form UTC format (e.g., '2024-11-29T09:30:00.000Z' or '2025-12-22T00:00:00Z'). Cannot be more than 30 days before end_time. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Single Booking

**Slug:** `SCHEDULEONCE_GET_SINGLE_BOOKING`

Tool to retrieve a single booking by ID from OnceHub. Use when you need to fetch complete booking details including timing, customer information, location, status, and form submission data.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The booking identifier. Format: 'BKNG-' followed by alphanumeric string (e.g., 'BKNG-J4FR05BKEWEX') |
| `expand` | string | No | Comma-separated list of embedded objects to expand into full objects. Expandable objects include: 'booking_page', 'event_type', 'master_page', 'owner'. Maximum expansion depth is 2 levels. Example: 'booking_page,event_type'. Note: Expanding data causes additional lookups and may result in slower response times. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Single Booking Calendar

**Slug:** `SCHEDULEONCE_GET_SINGLE_BOOKING_CALENDAR`

Tool to retrieve a single booking calendar by ID from OnceHub. Use when you need to fetch detailed information about a specific booking calendar including its subject, name, URL, host, published status, and duration.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier of the booking calendar to retrieve (e.g., 'BKC-ZK6W94KE6W' or 'BKC-LDJ878496X') |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Single Contact

**Slug:** `SCHEDULEONCE_GET_SINGLE_CONTACT`

Tool to retrieve a single contact by ID from OnceHub. Use when you need to fetch complete contact details including personal information, location data, and custom fields.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier of the contact to retrieve (e.g., 'CTC-J4FR05BKEW' or 'CTC-GLJV69KW2LU30W') |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Single Master Page

**Slug:** `SCHEDULEONCE_GET_SINGLE_MASTER_PAGE`

Tool to retrieve a single master page by ID from OnceHub. Use when you need to fetch complete master page details including name, label, URL, and active status.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier of the master page to retrieve. Format: MP-XXXXXXXXXXXX (e.g., 'MP-73E6RHFU77' or 'MP-TEST123456') |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Single User

**Slug:** `SCHEDULEONCE_GET_SINGLE_USER`

Tool to retrieve a single user by ID from OnceHub. Use when you need to fetch detailed information about a specific user including their name, email, status, role, timezone, and team associations.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier of the user to retrieve (e.g., 'USR-GB59HWQCXF' or 'USR-FSD423423') |
| `expand` | string | No | Comma-separated list of embedded objects to expand in the response. By default, embedded objects are collapsed to their IDs. Example: 'teams'. Maximum expansion depth is 2 levels. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get User Scheduling Availability

**Slug:** `SCHEDULEONCE_GET_USER_SCHEDULING_AVAILABILITY`

Tool to get user scheduling availability from OnceHub. Use when you need to retrieve a user's weekly schedule, working hours, and any date-specific overrides.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier of the user (e.g., 'USR-GB59HWQCXF') |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List All Booking Calendars

**Slug:** `SCHEDULEONCE_LIST_ALL_BOOKING_CALENDARS`

Tool to list all booking calendars in the account. Use when you need to retrieve all booking calendars with optional cursor-based pagination.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `after` | string | No | Object ID for cursor-based pagination. Returns objects after this ID in reverse chronological order. Mutually exclusive with 'before'. |
| `limit` | integer | No | Number of objects to return, between 1-100. Default is 10. |
| `before` | string | No | Object ID for cursor-based pagination. Returns objects before this ID in reverse chronological order. Mutually exclusive with 'after'. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List All Booking Pages

**Slug:** `SCHEDULEONCE_LIST_ALL_BOOKING_PAGES`

Tool to list all booking pages in the account. Use when you need to retrieve all booking pages with optional cursor-based pagination.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `after` | string | No | Object ID for cursor-based pagination. Returns objects after this ID in reverse chronological order. Mutually exclusive with 'before'. |
| `limit` | integer | No | Number of objects to return, between 1-100. Default is 10. |
| `before` | string | No | Object ID for cursor-based pagination. Returns objects before this ID in reverse chronological order. Mutually exclusive with 'after'. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List All Bookings

**Slug:** `SCHEDULEONCE_LIST_ALL_BOOKINGS`

Tool to list all bookings in the account. Use when you need to retrieve bookings with optional filtering by time ranges, pagination, or expansion of related objects.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `after` | string | No | Object ID for cursor-based pagination. Returns objects after this ID. |
| `limit` | integer | No | Number of objects to return, between 1-100. Default is 10. |
| `before` | string | No | Object ID for cursor-based pagination. Returns objects before this ID. Mutually exclusive with 'after'. |
| `expand` | string | No | Comma-separated list of objects to expand (e.g., 'booking_page', 'event_type', 'master_page', 'owner'). By default, embedded objects return only IDs. |
| `creation_time.gt` | string | No | Filter bookings created after specified time (ISO 8601 format). |
| `starting_time.gt` | string | No | Filter bookings with starting time greater than specified timestamp (ISO 8601 format). |
| `starting_time.lt` | string | No | Filter bookings with starting time less than specified timestamp (ISO 8601 format). |
| `last_updated_time.gt` | string | No | Filter bookings updated after specified time (ISO 8601 format). Includes new, canceled, rescheduled, no-show, and completed bookings. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List All Contacts

**Slug:** `SCHEDULEONCE_LIST_ALL_CONTACTS`

Tool to list all contacts in the OnceHub account. Use when you need to retrieve contact information with optional filtering by creation time, update time, owner, or cursor-based pagination.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `after` | string | No | Object ID for cursor-based pagination. Returns objects after this ID in reverse chronological order. |
| `limit` | integer | No | Number of objects to return, between 1-100. Default is 10. |
| `before` | string | No | Object ID for cursor-based pagination. Returns objects before this ID in reverse chronological order. Mutually exclusive with 'after'. |
| `creation_time.gt` | string | No | Filter contacts created after specified timestamp (ISO 8601 format). |
| `creation_time.lt` | string | No | Filter contacts created before specified timestamp (ISO 8601 format). |
| `last_updated_time.gt` | string | No | Filter contacts updated after specified timestamp (ISO 8601 format). |
| `last_updated_time.lt` | string | No | Filter contacts updated before specified timestamp (ISO 8601 format). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List All Event Types

**Slug:** `SCHEDULEONCE_LIST_ALL_EVENT_TYPES`

Tool to list all event types in the account. Use when you need to retrieve all event types with optional cursor-based pagination to understand available event type options.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `after` | string | No | Object ID for cursor-based pagination. Returns objects after this ID in reverse chronological order. Mutually exclusive with 'before'. |
| `limit` | integer | No | Number of objects to return, between 1-100. Default is 10. |
| `before` | string | No | Object ID for cursor-based pagination. Returns objects before this ID in reverse chronological order. Mutually exclusive with 'after'. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List All Master Pages

**Slug:** `SCHEDULEONCE_LIST_ALL_MASTER_PAGES`

Tool to list all master pages in the account. Use when you need to retrieve all master pages with optional cursor-based pagination.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `after` | string | No | Object ID for cursor-based pagination. Returns objects after this ID in reverse chronological order. Mutually exclusive with 'before'. |
| `limit` | integer | No | Number of objects to return, between 1-100. Default is 10. |
| `before` | string | No | Object ID for cursor-based pagination. Returns objects before this ID in reverse chronological order. Mutually exclusive with 'after'. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List All Teams

**Slug:** `SCHEDULEONCE_LIST_ALL_TEAMS`

Tool to list all teams in the OnceHub account. Use when you need to retrieve team information with optional cursor-based pagination.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `after` | string | No | Object ID for cursor-based pagination. Returns objects after this ID in reverse chronological order. |
| `limit` | integer | No | Number of objects to return, between 1-100. Default is 25. |
| `before` | string | No | Object ID for cursor-based pagination. Returns objects before this ID in reverse chronological order. Mutually exclusive with 'after'. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List All Users

**Slug:** `SCHEDULEONCE_LIST_ALL_USERS`

Tool to list all users in the OnceHub account. Use when you need to retrieve user information with optional cursor-based pagination.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `after` | string | No | Object ID for cursor-based pagination. Returns objects after this ID in reverse chronological order. |
| `limit` | integer | No | Number of objects to return, between 1-100. Default is 10. |
| `before` | string | No | Object ID for cursor-based pagination. Returns objects before this ID in reverse chronological order. Mutually exclusive with 'after'. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Mark Booking as No-Show

**Slug:** `SCHEDULEONCE_MARK_BOOKING_AS_NO_SHOW`

Tool to mark a completed booking as no-show in OnceHub. Use when the customer did not attend the scheduled meeting and you need to update the booking status to reflect the no-show.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier of the booking to mark as no-show (e.g., 'BKNG-J4FR05BKEWEX'). The booking must exist and be in a valid state to be marked as no-show. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Test API Key

**Slug:** `SCHEDULEONCE_TEST_API_KEY`

Tool to validate API key authentication for OnceHub. Use when you need to verify that your API key is valid and active before making other API calls to the platform.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Contact

**Slug:** `SCHEDULEONCE_UPDATE_CONTACT`

Tool to update an existing contact in ScheduleOnce. Use when you need to modify contact information such as name, email, company, or phone number.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Unique identifier of the contact to update (e.g., 'CTC-W35G2NEQ2PC6QX'). |
| `email` | string | No | Updated email address of the contact. |
| `phone` | string | No | Updated phone number of the contact. |
| `company` | string | No | Updated company name associated with the contact. |
| `last_name` | string | No | Updated last name of the contact. |
| `first_name` | string | No | Updated first name of the contact. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update User

**Slug:** `SCHEDULEONCE_UPDATE_USER`

Tool to update an existing user in OnceHub. Use when you need to modify user information such as name, email, role, or timezone.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier of the user to update (e.g., 'USR-DQ27BRAJ4L'). |
| `email` | string | No | Updated email address of the user. |
| `timezone` | string | No | Updated timezone for the user (e.g., 'America/Chicago', 'Europe/London'). |
| `last_name` | string | No | Updated last name of the user. |
| `role_name` | string | No | Updated role name for the user (e.g., 'Member', 'Admin'). |
| `first_name` | string | No | Updated first name of the user. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update User Scheduling Availability

**Slug:** `SCHEDULEONCE_UPDATE_USER_SCHEDULING_AVAILABILITY`

Tool to update user scheduling availability in OnceHub. Use when you need to modify a user's weekly schedule, set working hours for specific days, or add date-specific overrides for holidays or special events.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier of the user (e.g., 'USR-GB59HWQCXF') |
| `weekly` | array | Yes | Weekly schedule containing availability for each day of the week. Must include entries for all 7 days. |
| `timezone` | string | Yes | Timezone for the scheduling availability (e.g., 'America/New_York', 'Asia/Kolkata'). Must be a valid IANA timezone identifier. |
| `overrides` | array | No | List of specific date overrides that modify the weekly schedule. Use this for holidays, vacation days, or special availability. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
