Appearance
Scan data.
POST
/backend/v1/scans
Runs scanners against the provided data,
with the option to enable/disable specific scanners and use the given project configuration.
Authorizations
HTTPBearer
TypeHTTP (bearer)
Request Body
application/json
JSON
{
"configOverrides": {
"additionalProperties": {
}
},
"disabled": [
],
"endpoint": "string",
"externalMetadata": "string",
"forceEnabled": [
],
"input": "string",
"project": "string",
"verbose": false
}
Responses
Successful Response
application/json
JSON
{
"id": "string",
"result": {
"outcome": "string",
"scannerResults": [
{
"completedDate": "string",
"customConfig": false,
"data": {
"matches": [
[
]
],
"type": "regex"
},
"outcome": "string",
"scanDirection": "string",
"scannerId": "string",
"scannerVersionMeta": "string",
"startedDate": "string"
}
]
},
"scanners": "string"
}