Skip to main content
POST
/
v1
/
desktop
/
launch
Launch a desktop application.
curl --request POST \
  --url http://localhost:2468/v1/desktop/launch \
  --header 'Content-Type: application/json' \
  --data '
{
  "app": "<string>",
  "args": [
    "<string>"
  ],
  "wait": true
}
'
{
  "processId": "<string>",
  "pid": 1,
  "windowId": "<string>"
}

Body

application/json
app
string
required
args
string[] | null
wait
boolean | null

Response

Application launched

processId
string
required
pid
integer<int32> | null
Required range: x >= 0
windowId
string | null