curl --request POST \
--url https://api.example.com/process.Process/Start \
--header 'Content-Type: application/connect+json' \
--data '
{
"process": {
"cmd": "<string>",
"args": [
"<string>"
],
"envs": {},
"cwd": "<string>"
},
"pty": {
"size": {
"cols": 123,
"rows": 123
}
},
"tag": "<string>",
"stdin": true
}
'