Skip to main content
POST
/
computers
/
{id}
/
stream
/
stop
Stop stream
curl --request POST \
  --url https://www.orgo.ai/api/computers/{id}/stream/stop \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}
Stops an active RTMP stream.

Path parameters

id
string
required
Computer ID.

Response

success
boolean
true if stream was stopped.

Example

curl -X POST https://www.orgo.ai/api/computers/a3bb189e-8bf9-3888-9912-ace4e6543002/stream/stop \
  -H "Authorization: Bearer $ORGO_API_KEY"

Response

{
  "success": true
}
Always stop streams when done to free resources.

Authorizations

Authorization
string
header
required

API key authentication. Get your key at orgo.ai/workspaces

Path Parameters

id
string
required

Computer ID

Response

Stream stopped

success
boolean