Skip to main content
POST
/
org
/
helm
/
resource
/
{resource_id}
/
reset-circuit-breaker
Reset Platform Resource Circuit Breaker Endpoint
import requests

url = "https://platform.ankra.app/org/helm/resource/{resource_id}/reset-circuit-breaker"

headers = {"Authorization": "Bearer <token>"}

response = requests.post(url, headers=headers)

print(response.text)
{
  "resource_id": "<string>",
  "previous_failure_count": 123,
  "reset_success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

resource_id
string<uuid4>
required

Cookies

ankra_session
string | null
ankra_refresh
string | null

Response

Successful Response

resource_id
string<uuid4>
required
previous_failure_count
integer
required
reset_success
boolean
required