List schedules
GET
/api/v1/schedules
const url = 'https://dashboard.justcrawl.io/api/v1/schedules';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://dashboard.justcrawl.io/api/v1/schedules \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” page
integer
pageSize
integer
frequency
string
isEnabled
boolean
Responses
Section titled “ Responses ”Paginated list of schedules
Media type application/json
object
items
Array<object>
object
id
string format: uuid
name
string
workflowId
string format: uuid
tagFilters
Array<string>
frequency
string
cronExpr
string
timezone
string
isEnabled
boolean
nextRunAt
string format: date-time
lastRunAt
string format: date-time
createdAt
string format: date-time
total
integer
Example
{ "items": [ { "frequency": "hourly" } ]}