Mix LogoMix

Get specific command

Retrieve details about a specific command

Retrieve details about a specific command

GET
/api/commands/{name}

Path Parameters

namestring

Command name

Response Body

from mix_python_sdk import Mixwith Mix() as mix:    res = mix.system.get_command(name="<value>")    # Handle response    print(res)
{
  "description": "string",
  "name": "string",
  "usage": "string"
}
{
  "error": {
    "code": 0,
    "message": "string",
    "type": "bad_request"
  }
}