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

ListRemediationExecutions

List the execution history for a remediation policy

Execution Availability

Try It Out

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

Path Parameters

Query Parameters

Request Inputs

Path Parameters

  • policyIdStringRequired

    UUID of the policy to list executions for

Query Parameters

  • limitInteger

    Maximum number of execution records to return Maximum number of execution records to return

    Example: 0

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    Collection of result items

    Example: (nested array)

    • idString

      Unique identifier of this execution record

      Example: exec-001-abc

    • policyIdString

      UUID of the policy that triggered this execution

      Example: policy-001-abc

    • agentIdString

      UUID of the agent targeted by this execution

      Example: agent-001-xyz

    • triggeredAtString

      Triggered at

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

    • actionString

      Remediation action that was executed

      Example: restart_service

    • statusString

      Current status of the execution (running, succeeded, failed)

      Example: succeeded

    • verifiedAtString

      Verified at

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

    • errorString

      Error message if the execution failed

      Example: connection refused

    • retryCountInteger

      Number of retry attempts made

      Example: 20

  • totalInteger

    Total number of execution records

    Example: 15

  • limitInteger

    Page size limit

    Example: 20

  • offsetInteger

    Pagination offset

    Example: 20

Endpoint

GET/api/v1/monitoring/remediation-policies/{policyId}/executions

/api/v1/monitoring/remediation-policies/{policyId}/executions

Operation ID

ListRemediationExecutions

Permalink

Request Example

curl -X GET '{host}/api/v1/monitoring/remediation-policies/{policyId}/executions' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ],
  "total": 15,
  "limit": 20,
  "offset": 20
}

Change History

This API has no change history records yet.

View all change history