Dynamically Pre-Fill the Scopes in a New Integration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2023 08:01 AM - edited 08-16-2023 08:06 AM
Anyone know a way to pre-fill the Scopes check boxes in a new Integration? Maybe using the URL parameters? I'm thinking something like https://developer.webex.com/my-apps/new/integration/?scopes=meeting%3Aadmin_participants_read.
Our clients have to create their own integrations and I'd like to be able to make it happen for them. Maybe even an API to create the integration itself. Didn't notice a way to do that in the documentation.
- Labels:
-
Webex API
-
Webex Integrations
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2023 10:42 AM
There is no api to create an integration/bot programmatically. Obviously also to prevent bots from creating bots
But you may create a simple javascript that your clients may execute in their browser's console. That may do some stuff like document.getElementById('scopes-meeting:admin_recordings_write').checked= true;
to prefill the form.
