You are here: Integration > Management API > Command API

Management command API

The command API allows conference control and platform-level operations to be invoked.

Command resources

The following command resources are available via the REST API:

Component Path
Dial /api/admin/command/v1/participant/dial/
Disconnect participant /api/admin/command/v1/participant/disconnect/
Disconnect conference /api/admin/command/v1/conference/disconnect/
Mute participant /api/admin/command/v1/participant/mute/
Mute all guests /api/admin/command/v1/conference/mute_guests/
Unmute participant /api/admin/command/v1/participant/unmute/
Unmute all guests /api/admin/command/v1/conference/unmute_guests/
Lock conference /api/admin/command/v1/conference/lock/
Unlock conference /api/admin/command/v1/conference/unlock/
Unlock participant /api/admin/command/v1/participant/unlock/
Transfer participant * /api/admin/command/v1/participant/transfer/
Create backup /api/admin/command/v1/platform/backup_create/
Restore backup /api/admin/command/v1/platform/backup_restore/
Template sync /api/admin/command/v1/conference/sync/
* This resource is new in Pexip Infinity v12.

Resource details

More information can be obtained for each resource by downloading the resource schema in a browser.

You may want to install a JSON viewer extension to your browser in order to view the JSON strings in a readable format.

For example, to view the schema for the dial command the URI would be:

https://<manageraddress>/api/admin/command/v1/participant/dial/schema/?format=json

Each schema contains information on the available fields including:

  • whether the field is optional (nullable: true) or required (nullable: false)
  • the type of data the field must contain
  • help text with additional information on usage.

Resource methods

Each command resource supports the following HTTP methods:

Method Action
POST Invokes a new command for the resource.

Response format

The response for a command will be a JSON object with the following attributes:

Attribute Value
status

success or error depending on whether or not the command succeeded.

message

An informational message string if the result was error.

data Command-specific response data.

Individual commands may have response attributes specific to the command. See the command examples for more information.

Examples

Dialing a participant into a conference

By submitting a POST request to the dial resource URI, a new participant can be dialed into a conference.

When using this command, note that:

  • The conference_alias is used for two purposes:
    • the participant being dialed will see the incoming call as coming from this alias
    • on answer, the participant will join the conference instance associated with this alias.
  • One or both of the node and system_location must be specified.
  • The node will override the system_location if both are given.
  • If only the system_location is given, a random node in that location will be used, which may just take the signaling for the call if the node is loaded.
  • The node must be an IP address and not an FQDN.

The following example places a new call from a Conferencing Node in the London system location to the H.323 endpoint with alias alice. Alice will see the call as coming from alias meet@example.com, and on answer will join the Virtual Meeting Room associated with that alias (in this case VMR_1, based on our configuration API examples), as a Host.

import requests
import json
response = requests.post(
    "https://<manageraddress>/api/admin/command/v1/participant/dial/",
    auth=('<user1>', '<password1>'),
    data={
        'conference_alias': 'meet@example.com',
        'destination': 'alice',
        'remote_display_name': 'Alice Parkes',
        'protocol': 'h323',
        'system_location': 'London',
        'role': 'chair',
        },
    verify=False)
print "New participant created:", json.loads(response.content)['data']['participant_id']

Note that if the dial command is successful the response will contain a participant_id attribute which can be used in queries for status and other conference control commands such as Disconnecting a participant and Muting a participant.

Disconnecting a participant

By submitting a POST request to the disconnect resource URI, an existing participant can be disconnected from a conference instance.

import requests
response = requests.post(
    "https://<manageraddress>/api/admin/command/v1/participant/disconnect/",
    auth=('<user1>', '<password1>'),
    data={
        'participant_id': '00000000-0000-0000-0000-000000000001',
        },
    verify=False)

Muting a participant

By submitting a POST request to the mute resource URI, the audio being sent from an existing conference participant can be muted, meaning all other participants will not hear them.

import requests
response = requests.post(
    "https://<manageraddress>/api/admin/command/v1/participant/mute/",
    auth=('<user1>', '<password1>'),
    data={
        'participant_id': '00000000-0000-0000-0000-000000000001',
        },
    verify=False)

Muting all guest participants

By submitting a POST request to the mute_guests resource URI, the audio being received from all guest participants within an existing conference can be muted.

import requests
response = requests.post(
    "https://<manageraddress>/api/admin/command/v1/conference/mute_guests/",
    auth=('<user1>', '<password1>'),
    data={
        'conference_id': '00000000-0000-0000-0000-000000000001',
    },
    verify=False)

Unmuting a participant

By submitting a POST request to the unmute resource URI, a previously muted conference participant can have their audio restored, meaning other participants will again be able to hear them.

import requests
response = requests.post(
    "https://<manageraddress>/api/admin/command/v1/participant/unmute/",
    auth=('<user1>', '<password1>'),
    data={
        'participant_id': '00000000-0000-0000-0000-000000000001',
        },
    verify=False)

Unmuting all guest participants

By submitting a POST request to the unmute_guests resource URI, the audio being received from all guest participants within an existing conference can be unmuted.

import requests
response = requests.post(
    "https://<manageraddress>/api/admin/command/v1/conference/unmute_guests/",
    auth=('<user1>', '<password1>'),
    data={
        'conference_id': '00000000-0000-0000-0000-000000000001',
    },
    verify=False)

Locking a conference instance

By submitting a POST request to the conference lock resource URI, the conference instance will be locked, preventing new participants from joining. Instead new participants will be held at the Waiting for conference host screen. Note that if a service has a Host PIN, participants who enter the PIN will still be able to access the conference even when it is locked. For more information, see Locking a conference and allowing participants to join a locked conference.

import requests
response = requests.post(
    "https://<manageraddress>/api/admin/command/v1/conference/lock/",
    auth=('<user1>', '<password1>'),
    data={
        'conference_id': '00000000-0000-0000-0000-000000000001',
    },
    verify=False)

Unlocking a conference instance

By submitting a POST request to the conference unlock resource URI, a previously locked conference instance can be unlocked, meaning new participants will be allowed to join. Any participants held at the Waiting for conference host screen will also automatically join the conference.

import requests
response = requests.post(
    "https://<manageraddress>/api/admin/command/v1/conference/unlock/",
    auth=('<user1>', '<password1>'),
    data={
        'conference_id': '00000000-0000-0000-0000-000000000001',
    },
    verify=False)

Unlocking a participant

By submitting a POST request to the participant unlock resource URI, a participant held at the Waiting for conference host screen because the conference has been locked will be allowed to join the conference.

import requests
response = requests.post(
    "https://<manageraddress>/api/admin/command/v1/participant/unlock/",
    auth=('<user1>', '<password1>'),
    data={
        'participant_id': '00000000-0000-0000-0000-000000000001',
    },
    verify=False)

Transferring a participant

By submitting a POST request to the participant transfer resource URI, a participant can be moved from one conference to another. The target conference is identified by an alias in the conference_alias field, and they will have the specified role.

If the target conference is PIN-protected, the participant will bypass the PIN entry.

import requests
response = requests.post(
    "https://<manageraddress>/api/admin/command/v1/participant/transfer/",
    auth=('<user1>', '<password1>'),
    data={
        'participant_id': '00000000-0000-0000-0000-000000000001',
        'conference_alias': 'meet@example.com',
        'role': 'guest'
    },
    verify=False)

Creating a system backup

You can create a system backup by submitting a POST request to the platform backup_create resource URI.

You must specify a passphrase (replacing <backup_password> in the example below). The passphrase is used to encrypt the backup file. You must remember the passphrase as it will be required if you need to subsequently restore the data.

import requests
response = requests.post(
    "https://<manageraddress>/api/admin/command/v1/platform/backup_create/",
    auth=('<user1>', '<password1>'),
    data={
        'passphrase': '<backup_password>',
    },
    verify=False)

The backup file is created on the Management Node under the https://<manageraddress>/api/admin/configuration/v1/system_backup/ location.

Restoring a system backup

To restore a system backup (from a file stored on the Management Node) you need to:

  1. List the available backups on the Management Node to identify the filename of the backup you want to restore.
  2. Download the backup file to a temporary location.
  3. Restore the contents of the backup file to your Pexip Infinity system.

Listing the available backups

You can perform a GET on /api/admin/configuration/v1/system_backup/ to list the available backup files on the Management Node that can be restored (however, restoration must occur on exactly the same software version of Pexip Infinity that the backup was taken from).

import requests
response = requests.get(
    "https://<manageraddress>/api/admin/configuration/v1/system_backup/",
    auth=('<user1>', '<password1>'),
    verify=False)
print response.content

The response will include data similar to this for each backup file:

{
    "build": "26902.0.0",
    "date": "2016-01-28T15:36:16",
    "filename": "pexip_backup_10-44-7-0-mgr_11_26902.0.0_16_01_28_15_36_16.tar.gpg",
    "resource_uri": "/api/admin/configuration/v1/system_backup/pexip_backup_10-44-7-0-mgr_11_26902.0.0_16_01_28_15_36_16.tar.gpg/",
    "size": 9369536,
    "version": "11"
}

The "filename" value is what you will use in place of <filename> in the following GET command to download the file.

Note that if a backup file is no longer needed, you can perform a DELETE on the https://<manageraddress>/api/admin/configuration/v1/system_backup/<filename>/ URL to delete individual files.

Downloading the backup file

Next you can perform a GET on /api/admin/configuration/v1/system_backup/<filename>/ to download the backup file to a temporary location.

import requests
response = requests.get(
    "https://<manageraddress>/api/admin/configuration/v1/system_backup/<filename>/",
    auth=('<user1>', '<password1>'),
    verify=False)
wth open("/tmp/temp.bak", "w") as file_handle:
    file_handle.write(response.content)

This downloads the backup file to /tmp/temp.bak — you can change this to your preferred location and filename if required.

Using the example response from the list of available backups, the GET would be for: "https://10.44.7.0/api/admin/configuration/v1/system_backup/pexip_backup_10-44-7-0-mgr_11_26902.0.0_16_01_28_15_36_16.gpg/"

Restoring the backup

Finally, you can restore the contents of the backup file by submitting a POST request to the platform backup_restore resource URI, telling it to use the temporary file created in the previous step.

You must also specify the passphrase that was used to encrypt the backup file when it was generated.

import requests
response = requests.post(
    "https://<manageraddress>/api/admin/command/v1/platform/backup_restore/",
    auth=('<user1>', '<password1>'),
    data={
        'passphrase': '<backup_password>',
    },
    files={
        'package': open('/tmp/temp.bak'),
    },
    verify=False)