curl --request GET \
--url https://api.projectdiscovery.io/v1/scans/schedule \
--header 'X-API-Key: <api-key>'
{
"message": "<string>",
"schedules": [
{
"scan_frequency": "<string>",
"scan_id": "<string>",
"schedule_last_run": "<string>",
"schedule_next_run": "<string>",
"start_time": "<string>",
"hourly_frequency": 123,
"custom_weekdays": [
3
]
}
]
}
Get scan schedules for a user
curl --request GET \
--url https://api.projectdiscovery.io/v1/scans/schedule \
--header 'X-API-Key: <api-key>'
{
"message": "<string>",
"schedules": [
{
"scan_frequency": "<string>",
"scan_id": "<string>",
"schedule_last_run": "<string>",
"schedule_next_run": "<string>",
"start_time": "<string>",
"hourly_frequency": 123,
"custom_weekdays": [
3
]
}
]
}
Retrieve the Team ID from: https://cloud.projectdiscovery.io/settings/team
Example response
The response is of type object
.
Was this page helpful?