Enable or disable bridge
POST/api/v1/orgs/{orgId}/data-bridges/{bridgeId}:{action}
Execute an enable or disable action on the bridge.
Valid actions:
enable: starts bridge runtime processing. The linked MQTT broker configuration and stored credentials are verified before the worker starts.disable: stops bridge runtime processing and unsubscribes the worker from active NATS subjects.
Returns 204 No Content with no body. Use GET orgs/{orgId}/data-bridges/{bridgeId} to verify the current runtime state.
Request
Responses
- 204
- 400
- 401
- 403
- 404
- 409
No Content
Unknown action, or linked MQTT broker configuration failed live connection validation.
Authentication is missing or invalid.
The caller lacks the required role for this operation.
Bridge or linked MQTT broker configuration was not found.
Bridge is already in the requested state or cannot transition in its current state.