You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fetches site preferences for the provided Webex site, or the preferred Webex site.
1412
+
* This is used to determine capabilities of the site, such as whether scheduling a webinar is supported.
1413
+
*
1414
+
* @param {object} [options]
1415
+
* @param {string} [options.siteUrl] - Webex site URL. Defaults to preferredWebexSite, for example "cisco.webex.com".
1416
+
* @param {string} [options.siteName] - Site name query override. Defaults to the site name derived from siteUrl, for example "cisco" for "cisco.webex.com".
1417
+
* @param {SitePreferenceSelectOption[]} [options.selectOptions] - Preference sections to fetch. Defaults to 'scheduling'.
1418
+
* @returns {Promise<SitePreferencesResponse>} site preferences response body
* Fetches site preferences from a given site given a select option and a siteUrl with an optional siteName. If siteName is not provided, it will be derived from the siteUrl. If siteUrl is not provided, it will throw an error. If selectOptions is not provided, it will default to scheduling.
57
+
*
58
+
* @param {object} [options]
59
+
* @param {string} [options.siteUrl] - Webex site URL, for example "cisco.webex.com".
60
+
* @param {string} [options.siteName] - Site name query override. Defaults to the site name derived from options.siteUrl, e.g., "cisco".
61
+
* @param {SitePreferenceSelectOption[]} [options.selectOptions] - Preference sections to fetch. Defaults to 'scheduling'.
62
+
* @returns {Promise<SitePreferencesResponse>} site preferences response body
0 commit comments