PagerDuty

PAGERDUTY_DELETE_CACHE_VARIABLE_FOR_EVENT

Deletes a specific cache variable associated with an event orchestration in PagerDuty. This endpoint is used to remove temporary data storage that was previously set up for use in event orchestration workflows. It should be used when you need to clean up or remove outdated cache variables that are no longer needed in your event management process. This operation is permanent and cannot be undone, so it should be used with caution. The endpoint requires both the event orchestration ID and the specific cache variable ID to ensure precise removal of the intended data.

Remote pagerduty

Other tools also called PAGERDUTY_DELETE_CACHE_VARIABLE_FOR_EVENT? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "title": "Id",
      "description": "The ID of an Event Orchestration."
    },
    "cache_variable_id": {
      "type": "string",
      "title": "Cache Variable Id",
      "description": "The ID of a Cache Variable."
    }
  }
}