- Getting Started
- Authentication
- Common Error Responses
- Filtering Data
- Authentication
- User Confirmation
- User Invitation
- Password Reset
- Impersonation
- MFA
- Sign in authenticationPOST
- Sign in with recovery codePOST
- Sign out authenticationDELETE
- Targets
- Scans
- Reports
- Vulnerabilities
- Exceptions
- Schedules
- Webhooks
- Advanced Reports
- Audit
- Notifications
- Hosts
- Scanners
- Port Lists
- 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
- Delete my account
- Generates a new access token
- Revokes the current access token
- (Admin) Transfers all the resources from the user to another user
- Organizations
- Users
- Whitelabel Settings
Updates a schedule
PUT
/v2/schedules/{id}
Schedules
Last modified:2025-04-24 10:59:46
Request
Path Params
id
stringÂ
required
Body Params application/json
schedule
objectÂ
required
name
stringÂ
optional
Example:
My Schedule
comment
stringÂ
optional
Example:
My comment
period
integerÂ
optional
Example:
4
period_unit
stringÂ
optional
Example:
week
first_time
stringÂ
optional
Example:
2023-11-25 19:21:14 UTC
timezone
stringÂ
optional
Example:
UTC
bymonthday
stringÂ
optional
Example:
1
byday
stringÂ
optional
Example:
1SU
Example
{
"schedule": {
"name": "My Schedule",
"comment": "My comment",
"period": 4,
"period_unit": "week",
"first_time": "2023-11-25 19:21:14 UTC",
"timezone": "UTC",
"bymonthday": "1",
"byday": "1SU"
}
}
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/schedules/' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
This response does not have a body.
🟠401Unauthorized
🟠404Record Not Found
🟠422Parameter Error
Modified at 2025-04-24 10:59:46