v1

latestOpenAPI 3.1.12026-07-242899061.7 MB
Action Plans

This resource returns action plan configurations both automated and manual for a given TOE.

This API returns action plan configurations both automated and manual for a given TOE. The end-user needs to input the TOE ID (toe_id) for a given action plan in the API request.

get/v1/action_plan/{toe_id}

Path parameters

toe_idstring required
Example:5976423a-ee35-11e3-8569-14109ff1a304

Filter by the Toe ID.

Response

OK

Example response

{
  "automatic_action_plan_config": {
    "automated": true,
    "frequency": 30,
    "recipients": [
      {
        "first_name": "John",
        "last_name": "Doe",
        "email": "john.doe@external.com"
      }
    ]
  },
  "issue_summary": {
    "action_plan_last_shared_on": "2021-10-01T22:18:57+00:00",
    "current_open_issues_count": 8,
    "total_resolved_issues_count": 17,
    "total_shared_issues_count": 25
  },
  "manual_action_plan_config": {
    "recipients": [
      {
        "first_name": "John",
        "last_name": "Doe",
        "email": "john.doe@external.com"
      }
    ]
  }
}