List meeting settings
POST/v2/meetings/settings/searches
Fetches multiple meeting setting records. The records can be filtered, paged, and sorted according to the respective parameters.
Request
Query Parameters
Filters meeting settings by array of user_guids
Returns all matching records that are greater than the provided iso8601 timestamp. The comparison is done using microsecond precision.
Returns all matching records that are greater than or equal to the provided iso8601 timestamp. The comparison is done using microsecond precision.
Returns all matching records that are less than the provided iso8601 timestamp. The comparison is done using microsecond precision.
Returns all matching records that are less than or equal to the provided iso8601 timestamp. The comparison is done using microsecond precision.
Filters meeting settings by calendar type
Key to sort on, must be one of: id, created_at, updated_at. Defaults to id
Direction to sort in, must be one of: ASC, DESC. Defaults to DESC
How many records to show per page in the range [1, 100]. Defaults to 25
The current page to fetch results from. Defaults to 1
Whether to include total_pages and total_count in the metadata. Defaults to false
Specifies whether the max limit of 10k records should be applied to pagination counts. Affects the total_count and total_pages data
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
ID of the MeetingSetting
user object
Salesloft User record
User slug generated with a full name of the user
ID of the primary calendar
Display name of the primary calendar
Calendar owner's email address
User details
Calendar type
Default title of the meeting
Default description of the meeting
Default location of the meeting
Default meeting length in minutes set by the user
If Availability Limits have been turned on
The number of days out the user allows a prospect to schedule a meeting
The number of hours in advance a user requires someone to a book a meeting with them
Default buffer duration in minutes set by a user
Determines if meetings are scheduled with a 15 minute buffer between them
Times available set by a user that can be used to book meetings
Allow other team members to schedule on you behalf.
Allow team members to insert available time outside your working hours.
Allow team members to double book events on your calendar.
Allow team members to see the details of events on your calendar.
Determines if location will be filled via third-party service (Zoom, GoToMeeting, etc.)
Datetime of when the MeetingSetting was created
Datetime of when the MeetingSetting was last updated
Time zone for current calendar
Gets true when any issue with fetching calendar occurs
Determines if a user enabled Calendar Sync feature
Determines if a user enabled reschedule meetings feature
active_meeting_url object
Full url of the meeting
Datetime of when MeetingUrl was created
Datetime of when MeetingUrl was last updated
{
"id": 1,
"user": {
"id": "e2bf1d56-fcc9-4145-9af0-247cfaa67959",
"_href": "https://api.salesloft.com/v2/users/e2bf1d56-fcc9-4145-9af0-247cfaa67959"
},
"user_slug": "john-doe",
"primary_calendar_id": "a98iu0@group.calendar.google.com",
"primary_calendar_name": "My Meetings Calendar",
"email_address": "calendar.owner@example.com",
"user_details": {
"name": "John Doe",
"email": "john.doe@salesloft.com"
},
"calendar_type": "gmail",
"title": "Daily stand-up",
"description": "This meeting is held on a daily basis",
"location": "Atlanta, GA",
"default_meeting_length": 30,
"availability_limit_enabled": true,
"availability_limit": 14,
"schedule_delay": 2,
"buffer_time_duration": 15,
"schedule_buffer_enabled": true,
"times_available": {
"monday": {
"start_time": "09:00",
"end_time": "17:00",
"enabled": true
}
},
"allow_booking_on_behalf": true,
"allow_booking_overtime": true,
"allow_event_overlap": false,
"share_event_detail": false,
"enable_dynamic_location": false,
"created_at": "2024-11-14T10:18:47.585049+00:00",
"updated_at": "2024-11-14T10:18:47.585106+00:00",
"time_zone": "US/Eastern",
"primary_calendar_connection_failed": false,
"enable_calendar_sync": false,
"reschedule_meetings_enabled": false,
"active_meeting_url": {
"url": "https://example.com/team/user",
"created_at": "2024-11-14T10:18:47.585321+00:00",
"updated_at": "2024-11-14T10:18:47.585348+00:00"
}
}