Skip to main content
POST
/
v1
/
devices
/
batch-command
curl --request POST \
  --url https://managexrapi.com/v1/devices/batch-command \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "deviceIds": [
    "fJlJrjEL08UkhSLRRryd",
    "GrCQfwI4373WFqzVjguI"
  ],
  "action": "SYNC"
}
'
{
  "statusCode": 400,
  "message": "Request must contain a valid action",
  "error": "ManageXR Error"
}

Authorizations

Authorization
string
header
required

API key based authentication where is the Base64 encoding of API_KEY_ID:API_KEY_SECRET

  • Username: The API Key ID.
  • Password: The API Key Secret.

Query Parameters

organizationId
string

Unique identifier of the organization. Defaults to the organization associated with the API key if no id supplied.

Body

application/json
  • Launch App
  • Play / Pause Video
  • Launch Web Url
  • Disable / Enable Kiosk Mode
  • Restart
  • Power OFF
  • Set Volume
  • Set Brightness
  • Uninstall App
  • Restart App
  • Sync
  • Enable / Disable Tutorial Mode
deviceIds
string[]

List of unique identifiers (serial numbers) of devices

action
enum<string>

Launch an application on the devices

Available options:
LAUNCH_APP
Example:

"LAUNCH_APP"

data
object

Response

Success