UpdateCircuitBreakerConfig
Update the circuit breaker configuration for a specific platform.
PUT
/api/v1/platforms/{platformId}/circuit-breaker/configOperation ID
UpdateCircuitBreakerConfigSince
1.0.0Execution Mode
SynchronousAuth Context
Auth RequiredAuth Context
Send these values as request headers when calling this API.
AuthorizationstringRequiredBearer Token
X-Tenant-IDstringX-Tenant-ID
Request Inputs
application/jsonPath 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
