Meetme is Asterisk’s long-standing, now-being-phased-out conferencing subsystem. While technically a part of Asterisk’s core, it’s specialised enough that pystrix treats it as a module.
All of the following objects should be accessed as part of the ami.app_meetme namespace, regardless of the modules in which they are defined.
Bases: ami.ami._Request
Lists all participants in all (or one) conferences.
A series of ‘MeetmeList’ events follow, with one ‘MeetmeListComplete’ event at the end.
Note that if no conferences are active, the response will indicate that it was not successful, per https://issues.asterisk.org/jira/browse/ASTERISK-16812
conference is the optional identifier of the bridge.
Bases: ami.ami._Request
Lists all conferences.
A series of ‘MeetmeListRooms’ events follow, with one ‘MeetmeListRoomsComplete’ event at the end.
Bases: ami.ami._Request
Mutes a participant in a Meetme bridge.
Requires call
meetme is the identifier of the bridge and usernum is the participant ID of the user to be muted, which is associated with a channel by the ‘MeetmeJoin’ event. If successful, this request will trigger a ‘MeetmeMute’ event.
Bases: ami.ami._Request
Unmutes a participant in a Meetme bridge.
Requires call
meetme is the identifier of the bridge and usernum is the participant ID of the user to be unmuted, which is associated with a channel by the ‘MeetmeJoin’ event. If successful, this request will trigger a ‘MeetmeMute’ event.