Skip to main content

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

    user_guids string[]

    Filters meeting settings by array of user_guids

    Example: [user-guid-1, user-guid-2]
    updated_at[gt] iso8601 string

    Returns all matching records that are greater than the provided iso8601 timestamp. The comparison is done using microsecond precision.

    updated_at[gte] iso8601 string

    Returns all matching records that are greater than or equal to the provided iso8601 timestamp. The comparison is done using microsecond precision.

    updated_at[lt] iso8601 string

    Returns all matching records that are less than the provided iso8601 timestamp. The comparison is done using microsecond precision.

    updated_at[lte] iso8601 string

    Returns all matching records that are less than or equal to the provided iso8601 timestamp. The comparison is done using microsecond precision.

    calendar_type string[]

    Filters meeting settings by calendar type

    Example: [azure, gmail, nylas, cerebro, linkedin_azure, external]
    sort_by string

    Key to sort on, must be one of: id, created_at, updated_at. Defaults to id

    sort_direction string

    Direction to sort in, must be one of: ASC, DESC. Defaults to DESC

    per_page integer

    How many records to show per page in the range [1, 100]. Defaults to 25

    page integer

    The current page to fetch results from. Defaults to 1

    include_paging_counts boolean

    Whether to include total_pages and total_count in the metadata. Defaults to false

    limit_paging_counts boolean

    Specifies whether the max limit of 10k records should be applied to pagination counts. Affects the total_count and total_pages data

Responses

Success

Schema
    id integer

    ID of the MeetingSetting

    user object

    Salesloft User record

    id string
    _href string
    user_slug string

    User slug generated with a full name of the user

    primary_calendar_id string

    ID of the primary calendar

    primary_calendar_name string

    Display name of the primary calendar

    email_address string

    Calendar owner's email address

    user_details object

    User details

    calendar_type string

    Calendar type

    title string

    Default title of the meeting

    description string

    Default description of the meeting

    location string

    Default location of the meeting

    default_meeting_length integer

    Default meeting length in minutes set by the user

    availability_limit_enabled boolean

    If Availability Limits have been turned on

    availability_limit integer

    The number of days out the user allows a prospect to schedule a meeting

    schedule_delay integer

    The number of hours in advance a user requires someone to a book a meeting with them

    buffer_time_duration integer

    Default buffer duration in minutes set by a user

    schedule_buffer_enabled boolean

    Determines if meetings are scheduled with a 15 minute buffer between them

    times_available object

    Times available set by a user that can be used to book meetings

    allow_booking_on_behalf boolean

    Allow other team members to schedule on you behalf.

    allow_booking_overtime boolean

    Allow team members to insert available time outside your working hours.

    allow_event_overlap boolean

    Allow team members to double book events on your calendar.

    share_event_detail boolean

    Allow team members to see the details of events on your calendar.

    enable_dynamic_location boolean

    Determines if location will be filled via third-party service (Zoom, GoToMeeting, etc.)

    created_at date-time

    Datetime of when the MeetingSetting was created

    updated_at date-time

    Datetime of when the MeetingSetting was last updated

    time_zone string

    Time zone for current calendar

    primary_calendar_connection_failed boolean

    Gets true when any issue with fetching calendar occurs

    enable_calendar_sync boolean

    Determines if a user enabled Calendar Sync feature

    reschedule_meetings_enabled boolean

    Determines if a user enabled reschedule meetings feature

    active_meeting_url object
    url string

    Full url of the meeting

    created_at date-time

    Datetime of when MeetingUrl was created

    updated_at date-time

    Datetime of when MeetingUrl was last updated

Loading...