- Getting Started
- Authentication
- Common Error Responses
- Filtering Data
- Authentication
- Organizations
- Organization Subscriptions
- Subscribe to a planPOST
- List organizationsGET
- Create OrganizationPOST
- List dependent subscriptionsGET
- Show an organizationGET
- Update an organizationPUT
- Delete an organizationDELETE
- Subscribe an organization to a planPOST
- Unsubscribe an organization from a planPOST
- Move a user from one organization to anotherPUT
- Export all organizations to a CSV fileGET
- Users
- User
- User 2FA
- User Preferences
- Get current user
- Update current user
- Change current user password
- Get current user active plans (Not implemented yet)
- Get organization members
- Get current user products
- Get current organization
- Update current organization
- Get subscriptions history
- Change users product
- Checks if authorization token is valid
- Get current user permissions
- Check if the user can be deleted
- Transfers all the resources from the user to another user
- Delete my account
- Targets
- Schedules
- Scans
- Reports
- Advanced Reports
- Vulnerabilities
- Exceptions
- Scanners
- Port Lists
- Subscriptions
- Hosts
- Notifications
- Whitelabel
- Webhooks
- Webhook Events
- Audit
- Whitelabel Settings
Create Scan from Wizard
POST
/v2/scans/wizard_create
Scans
Last modified:2024-11-22 19:53:37
Request
Body Params application/json
scan
objectÂ
optional
name
stringÂ
required
Example:
My Scan
comment
stringÂ
optional
Example:
My comment
run_now
booleanÂ
optional
Example:
true
target_id
string <uuid>
required
target
objectÂ
optional
schedule_id
string <uuid>
optional
schedule
objectÂ
optional
config_id
string <uuid>
optional
scanner_id
string <uuid>
optional
Example
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v2/scans/wizard_create' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
đŸŸ¢201Created
application/json
Body
object {0}
Example
{
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"type": {
"type": "string"
},
"attributes": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string",
"description": "Name of the scan"
},
"comment": {
"type": [
"string",
"null"
],
"nullable": true,
"description": "Comment about the scan"
},
"creation_time": {
"type": "string",
"format": "date-time"
},
"modification_time": {
"type": "string",
"format": "date-time"
},
"editable": {
"type": "bool",
"description": "True if scan can be modified"
},
"app_type": {
"type": "string"
},
"status": {
"type": "string",
"description": "Status of the scan"
},
"schedule_next_time": {
"type": "string",
"description": "Next time the scan will run",
"nullable": true
},
"target": {
"type": "object",
"description": "Target of the scan",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
}
}
},
"scan_enabled": {
"type": "bool",
"description": "True if scan is enabled"
},
"end_time": {
"type": [
"string",
"null"
],
"format": "date-time",
"nullable": true
}
}
}
}
}
}
}
}
}
}
đŸŸ 401Unauthorized
đŸŸ 422Parameter Error
Modified at 2024-11-22 19:53:37