- Getting Started
- Authentication
- Common Error Responses
- Filtering Data
- Authentication
- Organizations
- Organization Subscriptions
- Subscribe to a plan
- List organizations
- Create Organization
- List dependent subscriptions
- Show an organization
- Update an organization
- Delete an organization
- Subscribe an organization to a plan
- Unsubscribe an organization from a plan
- Move a user from one organization to another
- Export all organizations to a CSV file
- Users
- User
- User 2FA
- User Preferences
- Get current userGET
- Update current userPUT
- Change current user passwordPUT
- Get current user active plans (Not implemented yet)GET
- Get organization membersGET
- Get current user productsGET
- Get current organizationGET
- Update current organizationPUT
- Get subscriptions historyGET
- Change users productPUT
- Checks if authorization token is validGET
- Get current user permissionsGET
- Check if the user can be deletedGET
- Transfers all the resources from the user to another userPUT
- Delete my accountDELETE
- Targets
- Schedules
- Scans
- Reports
- Advanced Reports
- Vulnerabilities
- Exceptions
- Scanners
- Port Lists
- Subscriptions
- Hosts
- Notifications
- Whitelabel
- Webhooks
- Webhook Events
- Audit
- Whitelabel Settings
Change users product
PUT
/v2/user/preferences/notifications/{name}
User/User Preferences
Last modified:2024-11-22 19:53:37
Request
Path Params
name
enum<string>Â
required
Allowed values:
scan_eventreport_eventexception_eventoverdue_pci_reminder
Body Params application/json
object {0}
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 PUT '/v2/user/preferences/notifications/' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
application/json
Body
object {0}
Examples
{
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"type": {
"type": "string",
"value": "notification_preferences"
},
"attributes": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"notification_type": {
"type": "string",
"value": "scan_event"
},
"enabled": {
"type": "boolean",
"example": true
},
"code": {
"type": [
"string",
"null"
],
"nullable": true
},
"params": {
"type": "object",
"properties": {
"when_status": {
"type": "array",
"description": "Accepted values: completed, started, stopped, failed",
"items": {
"type": "string"
},
"example": "completed"
},
"if_completed": {
"type": "array",
"description": "Accepted values: pass, fail",
"items": {
"type": "string"
},
"example": [
"pass"
]
},
"if_severity": {
"type": "array",
"items": {
"type": "integer"
},
"example": [
6
]
}
}
},
"created_at": {
"type": "string",
"example": "2024-03-04T13:04:41.814Z"
},
"updated_at": {
"type": "string",
"example": "2024-03-04T13:04:41.814Z"
}
}
}
}
}
}
}
}
}
}
🟠401Unauthorized
🟠422Parameter Error
Modified at 2024-11-22 19:53:37