Resubmit fallout events

post

/topology/v2/fallout/events/resubmit

Resubmits the fallout events to the target service's retry topic and updates their state to COMPLETED or FAILED. Fallout events that are already in the COMPLETED state will not be resubmitted.The request body is the preferred method for submitting parameters. Query parameters are supported for backward compatibility but will be deprecated in the future.

Request

Query Parameters
  • The action of the Fallout Events to resubmit. Default value is REBUILD
    Default Value: REBUILD
  • The error code of the Fallout Events to resubmit.
  • The state of the Fallout Events to resubmit. Default value is READY_TO_RESUBMIT
    Default Value: READY_TO_RESUBMIT
  • Based on targetService, event will be resubmitted to target kafka retry topic. Supported values for targetService are ATA, SSC & AlarmConsumer.
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : eids
Type: array
EntityIds to resubmit. If present, overrides all filters. Max 500 IDs allowed.
Show Source
Examples

Back to Top

Response

Supported Media Types

200 Response

Fallout Events were resubmitted successfully. - If `eids` are provided: Only those entityIds are processed. Response is minimal. - If `eids` are NOT provided: Filters like `state`, `action`, and `errorcode` are used to select events. - When using filters, `targetService` is mandatory and must be a valid system ID.
Body ()
Root Schema : schema
Example:
{
    "processed":0,
    "targetService":"ATA",
    "events_to_resolve":{
        "ready_to_resubmit":1,
        "pending":238,
        "failed":0
    }
}
Examples

400 Response

The request isn't valid
Body ()
Root Schema : ErrorType
Type: object
Show Source
Nested Schema : message
Type: array
Show Source

401 Response

You aren't authorized to make this request.
Body ()
Root Schema : ErrorType
Type: object
Show Source
Nested Schema : message
Type: array
Show Source

403 Response

The request is forbidden
Body ()
Root Schema : ErrorType
Type: object
Show Source
Nested Schema : message
Type: array
Show Source

404 Response

The requested resource not found
Body ()
Root Schema : ErrorType
Type: object
Show Source
Nested Schema : message
Type: array
Show Source

500 Response

An Internal Server Error has occurred
Body ()
Root Schema : ErrorType
Type: object
Show Source
Nested Schema : message
Type: array
Show Source
Back to Top