Method: enterprises.devices.executeCommand

Executes a command to device managed by the enterprise.

HTTP request

POST https://smartdevicemanagement.googleapis.com/v1/{name=enterprises/*/devices/*}:executeCommand

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
name

string

The name of the device requested. For example: "enterprises/XYZ/devices/123"

Request body

The request body contains data with the following structure:

JSON representation
{
  "command": string,
  "params": {
    object
  }
}
Fields
command

string

The command name to execute, represented by the fully qualified protobuf message name.

params

object (Struct format)

The command message to execute, represented as a Struct.

Response body

Response message for SmartDeviceManagementService.ExecuteDeviceCommand

If successful, the response body contains data with the following structure:

JSON representation
{
  "results": {
    object
  }
}
Fields
results

object (Struct format)

The results of executing the command.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/sdm.service

For more information, see the OAuth 2.0 Overview.