Infrastructure/Federation & SSO
PUTFederationSince 1.0SynchronousAuth Required
UpdateCircuitBreakerConfig
Update the circuit breaker configuration for a specific platform.
Execution Availability
Try It Out
Submit a mock request using the current auth context and example-driven inputs.
Path Parameters
Request Inputs
Path Parameters
platformIdStringRequiredPlatform identifier whose circuit breaker configuration will be updated.
Body Fields
failureThresholdIntegerRequiredNumber of failures required to open the circuit.
Example: 5
successThresholdIntegerRequiredNumber of successes required to close the circuit from half-open.
Example: 2
initialBackoffSecIntegerRequiredInitial backoff duration in seconds after the circuit first opens.
Example: 10
maxBackoffSecIntegerRequiredMaximum backoff duration in seconds for exponential backoff.
Example: 300
backoffMultiplierLongRequiredMultiplier applied to backoff duration on each successive circuit open.
Example: 2
Responses
Endpoint
PUT/api/v1/platforms/{platformId}/circuit-breaker/config
/api/v1/platforms/{platformId}/circuit-breaker/config
Request Example
curl -X PUT '{host}/api/v1/platforms/{platformId}/circuit-breaker/config' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"key": "value"}'
Response Example
200{}Change History
This API has no change history records yet.
