List upcoming scans
GET
/v2/scans/upcoming_scansLast modified: 3 days ago
Get a list of upcoming scans ordered by schedule_next_time asc
Request
Query Params
limit
integer
optional
Limit the number of results
Example:
10
Request samples
Responses
OK(200)
Unauthorized(401)
HTTP Code: 200
Content Type : JSONapplication/json
Upcoming scans list
Data Schema
object {0}
ExampleSuccess response example
{
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string"
},
"attributes": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"next_scheduled_at": {
"type": "string"
},
"in_timezone": {
"type": "string"
}
}
}
}
}
}
}
}
}
}
}
Last modified: 3 days ago