Name
Enable or disable features in a meeting, say to configure compliance settings. For example, tweak features of the various pods, disable recordings of meetings, and so on.
Availability
Acrobat Connect Pro 7
Description
Enables or disables features in a meeting. This action is used to manage features such as recording of meetings and control of pods. For more information on usage, see Configure compliance settings. You can append multiple feature-id and enable pairs to the end of the request URL.
Request URL
http://server name/api/xml ?action=meeting-feature-update &account-id=integer &feature-id=value &enable=value
Parameters
|
Type |
Required |
Description |
account-id |
BIGINT |
Y |
The ID of your Adobe Connect hosted account. For enterprise installations, the ID is 7. For licensed installations, use common-info to get the ID. |
feature-id |
BIGINT |
Y |
The ID of the feature to enable or disable. For available IDs, see feature-id. |
enable |
Boolean |
Y |
Whether to enable the specified feature (true) or not (false). |
Response structure
<?xml version="1.0" encoding="utf-8" ?> <results> <status code=code /> </results>
Response values
Element |
Attribute |
Type |
Description |
results |
|
Container |
All results the action returns. |
status |
|
Empty, with attributes |
The status of the response. |
|
code |
Allowed value |
A code indicating the response status (see status). |
Sample request
The following sample disables the Chat pod.
https://example.com/api/xml?action=meeting-feature-update&account-id=7&feature-id=fid-meeting-chat&enable=false
Sample response
<?xml version="1.0" encoding="utf-8" ?> <results> <status code="ok" /> </results>