POST/browsers/{id}/process/exec

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Browser session ID

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Request to execute a command synchronously.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/browsers/string/process/exec" \  -H "Content-Type: application/json" \  -d '{    "command": "string"  }'
{  "exit_code": 0,  "stdout_b64": "string",  "stderr_b64": "string",  "duration_ms": 0}