v1
latestOpenAPI 3.1.02026-07-261690320.7 KBList autofix history
Returns a paginated list of autofix tasks in your account. Use the header X-Has-Next-Page for pagination.
get/autofix/history
Query parameters
pageinteger
Pagination parameter, starts at 0.
per_pageinteger
Amount of items returned
Response
A list of autofix history items
Example response
[
{
"id": 12345,
"type": "dependency",
"status": "pr_open",
"triggered_by": {
"type": "user",
"user_id": 42
},
"autofix_target": {
"code_repo_id": 1,
"location": "package-lock.json",
"title": "lodash → 4.17.21"
},
"triggered_at": 1783119723,
"finished_at": 1783119840,
"pull_request": {
"url": "https://github.com/org/repo/pull/123"
}
}
]