POST
/
v1
/
scans
/
schedule
curl --request POST \
  --url https://api.projectdiscovery.io/v1/scans/schedule \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "targets": [
    "<string>"
  ],
  "templates": [
    "<string>"
  ],
  "assets": [
    "<string>"
  ],
  "private_templates": [
    {
      "name": "<string>",
      "contents": "<string>"
    }
  ],
  "scan_id": "<string>",
  "scan_frequency": "daily",
  "recommended": true,
  "all": true
}'
{
  "message": "<string>"
}

Authorizations

X-API-Key
string
header
required

Body

application/json
scan_frequency
enum<string>
required
Available options:
daily,
monthly,
weekly
targets
string[]
templates
string[]
assets
string[]
private_templates
object[]
scan_id
string
all
boolean

Response

200
application/json
Example response
message
string