Update Scan Schedule
curl --request PUT \
--url https://api.veridical.dev/api/v1/scan-schedules/{schedule_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"repository_id": "<string>",
"workspace_id": "<string>",
"cadence": "weekly",
"client_request_id": "<string>",
"config": {},
"day_of_month": 14,
"hour": 2,
"minute": 0,
"scan_type": "security",
"source_ref": "<string>",
"state": "active",
"timezone_name": "UTC",
"weekday": 0
}
'import requests
url = "https://api.veridical.dev/api/v1/scan-schedules/{schedule_id}"
payload = {
"repository_id": "<string>",
"workspace_id": "<string>",
"cadence": "weekly",
"client_request_id": "<string>",
"config": {},
"day_of_month": 14,
"hour": 2,
"minute": 0,
"scan_type": "security",
"source_ref": "<string>",
"state": "active",
"timezone_name": "UTC",
"weekday": 0
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
repository_id: '<string>',
workspace_id: '<string>',
cadence: 'weekly',
client_request_id: '<string>',
config: {},
day_of_month: 14,
hour: 2,
minute: 0,
scan_type: 'security',
source_ref: '<string>',
state: 'active',
timezone_name: 'UTC',
weekday: 0
})
};
fetch('https://api.veridical.dev/api/v1/scan-schedules/{schedule_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}control
Update Scan Schedule
PUT
/
api
/
v1
/
scan-schedules
/
{schedule_id}
Update Scan Schedule
curl --request PUT \
--url https://api.veridical.dev/api/v1/scan-schedules/{schedule_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"repository_id": "<string>",
"workspace_id": "<string>",
"cadence": "weekly",
"client_request_id": "<string>",
"config": {},
"day_of_month": 14,
"hour": 2,
"minute": 0,
"scan_type": "security",
"source_ref": "<string>",
"state": "active",
"timezone_name": "UTC",
"weekday": 0
}
'import requests
url = "https://api.veridical.dev/api/v1/scan-schedules/{schedule_id}"
payload = {
"repository_id": "<string>",
"workspace_id": "<string>",
"cadence": "weekly",
"client_request_id": "<string>",
"config": {},
"day_of_month": 14,
"hour": 2,
"minute": 0,
"scan_type": "security",
"source_ref": "<string>",
"state": "active",
"timezone_name": "UTC",
"weekday": 0
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
repository_id: '<string>',
workspace_id: '<string>',
cadence: 'weekly',
client_request_id: '<string>',
config: {},
day_of_month: 14,
hour: 2,
minute: 0,
scan_type: 'security',
source_ref: '<string>',
state: 'active',
timezone_name: 'UTC',
weekday: 0
})
};
fetch('https://api.veridical.dev/api/v1/scan-schedules/{schedule_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Required string length:
8 - 200Path Parameters
Body
application/json
Pattern:
^(daily|weekly|monthly)$Required string length:
8 - 200Required range:
1 <= x <= 28Required range:
0 <= x <= 23Required range:
0 <= x <= 59Pattern:
^(security|onboarding|full)$Maximum string length:
256Pattern:
^(active|paused)$Required string length:
1 - 100Required range:
0 <= x <= 6Response
Successful Response
The response is of type Response Update Scan Schedule Api V1 Scan Schedules Schedule Id Put · object.
Last modified on July 28, 2026
⌘I

