Skip to main content
Infrastructure/Federation & SSO

UpdateCircuitBreakerConfig

Update the circuit breaker configuration for a specific platform.

PUT/api/v1/platforms/{platformId}/circuit-breaker/config

Operation ID

UpdateCircuitBreakerConfig

Since

1.0.0

Execution Mode

Synchronous

Auth Context

Auth Required

Auth Context

Send these values as request headers when calling this API.

AuthorizationstringRequired

Bearer Token

X-Tenant-IDstring

X-Tenant-ID

Request Inputs

application/json

Path Parameters

  • platformId
    StringRequired

    Platform identifier whose circuit breaker configuration will be updated.

Body Fields

  • failureThreshold
    IntegerRequired

    Number of failures required to open the circuit.

    Example: 5

  • successThreshold
    IntegerRequired

    Number of successes required to close the circuit from half-open.

    Example: 2

  • initialBackoffSec
    IntegerRequired

    Initial backoff duration in seconds after the circuit first opens.

    Example: 10

  • maxBackoffSec
    IntegerRequired

    Maximum backoff duration in seconds for exponential backoff.

    Example: 300

  • backoffMultiplier
    LongRequired

    Multiplier applied to backoff duration on each successive circuit open.

    Example: 2

Responses

200 OK
200 OK

On success, this API returns an empty JSON object {}.