openapi: 3.2.0 info: title: Click Signing Circuit breaker API version: 1.0.0 servers: - url: https://hq1.appsflyer.com/api/p360-click-signing/v2.0 security: - bearerAuth: [] tags: - name: Circuit breaker paths: /config/circuit-breaker: put: tags: - Circuit breaker summary: Circuit breaker description: '> ⚠️ Important > > All API V2 tokens generated before March 10, 2026, 19:00 UTC have been revoked. If your token was generated before this date, please regenerate it. [Learn how](https://support.appsflyer.com/hc/en-us/articles/360004562377-Managing-AppsFlyer-tokens). ' operationId: click-signing-config-circuit-breaker-put requestBody: content: application/json: schema: required: - status type: object properties: status: type: string enum: - enabled - disabled required: true responses: '200': description: circuit breaker updated successfully content: application/json: schema: $ref: '#/components/schemas/success_response' example: message: The request was successful '400': description: Bad request content: application/json: schema: $ref: '#/components/schemas/error_response' examples: Invalid status: summary: Invalid status value: messege: 'Invalid status for a circuit-breaker. Valid values: enabled, disabled' '401': description: Forbidden content: application/json: schema: $ref: '#/components/schemas/error_response' '404': description: Resource not found content: application/json: schema: $ref: '#/components/schemas/error_response' components: schemas: success_response: required: - message properties: message: type: string error_response: required: - message properties: message: type: string securitySchemes: bearerAuth: type: http scheme: bearer bearerFormat: JWT description: '> ⚠️ Important > > All API V2 tokens generated before March 10, 2026, 19:00 UTC have been revoked. If your token was generated before this date, please regenerate it. [Learn how](https://support.appsflyer.com/hc/en-us/articles/360004562377-Managing-AppsFlyer-tokens). Token required for authorization. Please refer to [this link](https://support.appsflyer.com/hc/en-us/articles/360004562377) for instructions on how to obtain the token. '