v1

latestOpenAPI 3.1.02026-07-261690320.7 KB

List issues addressed by a task

Returns the issues that an autofix task was trying to solve. Use the autofix task ID (the id field) from the /autofix/history endpoint.

get/autofix/history/{autofix_task_id}/issues

Path parameters

autofix_task_idinteger required

The autofix task ID, as returned in the id field of the /autofix/history endpoint.

Response

The issues targeted by the autofix task

Example response

{
  "targeted_issues": [
    {
      "id": 12345
    },
    {
      "id": 12346
    }
  ]
}