Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions api-reference/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,28 @@
},
"description": "Filter scans by project name"
},
{
"name": "triggered_by",
"in": "query",
"required": false,
"schema": {
"type": "string"
},
"description": "Filter scans by the user who triggered them. Use an email address or \"current_user\"."
},
{
"name": "scan_type",
"in": "query",
"required": false,
"schema": {
"type": "string",
"enum": [
"full",
"partial"
]
},
"description": "Filter scans by type. Use \"full\" for full scans or \"partial\" for scans limited to selected files."
},
{
"name": "page",
"in": "query",
Expand Down Expand Up @@ -1236,6 +1258,28 @@
},
"description": "Filter issues by branch name"
},
{
"name": "triggered_by",
"in": "query",
"required": false,
"schema": {
"type": "string"
},
"description": "Filter issues to the latest scan triggered by a specific user. Use an email address or \"current_user\"."
},
{
"name": "scan_type",
"in": "query",
"required": false,
"schema": {
"type": "string",
"enum": [
"full",
"partial"
]
},
"description": "Filter issues to the latest scan by scan type. Use \"full\" or \"partial\"."
},
{
"name": "show_false_positives",
"in": "query",
Expand Down