Skip to main content
POST
/
v1
/
processes
/
{id}
/
input
Write input to a process.
curl --request POST \
  --url http://localhost:2468/v1/processes/{id}/input \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": "<string>",
  "encoding": "<string>"
}
'
{
  "bytesWritten": 1
}

Path Parameters

id
string
required

Process ID

Body

application/json
data
string
required
encoding
string | null

Response

Input accepted

bytesWritten
integer
required
Required range: x >= 0