Skip to main content
Monitoring & Collection/Auto Remediation
POSTMonitoringSince 1.0SynchronousAuth Required

ExecuteRemediationAction

Execute a remediation action against the target resource

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Request Inputs

Path Parameters

  • actionIdStringRequired

    UUID of the action to execute

Responses

200 OK

On success, this API returns the following response structure.

  • actionIdString

    ID of the action that was executed

    Example: action-001-abc

  • statusString

    Execution status (running, succeeded, failed)

    Example: running

  • startTimeString

    Start time

    Example: 2026-01-15T08:00:00Z

  • messageString

    Informational message about the execution outcome

    Example: Migration started for 4 VMs

Endpoint

POST/api/v1/monitoring/remediation/actions/{actionId}/execute

/api/v1/monitoring/remediation/actions/{actionId}/execute

Operation ID

ExecuteRemediationAction

Permalink

Request Example

curl -X POST '{host}/api/v1/monitoring/remediation/actions/{actionId}/execute' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{}'

Response Example

200
{
  "actionId": "action-001-abc",
  "status": "running",
  "startTime": "example",
  "message": "Migration started for 4 VMs"
}

Change History

This API has no change history records yet.

View all change history