Skip to main content
Enable or disable a pipe
curl --request POST \
  --url https://api.example.com/pipes/{id}/enable \
  --header 'Content-Type: application/json' \
  --data '
{
  "enabled": true
}
'
{
  "success": true
}

Path Parameters

id
string
required

ID of the pipe

Body

application/json
enabled
boolean
required

Response

200 - application/json

Pipe enabled/disabled

success
boolean