Get schedule
GET
/api/v1/schedules/{id}
const url = 'https://dashboard.justcrawl.io/api/v1/schedules/example';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/example \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Responses
Section titled “ Responses ”Schedule detail
Media type application/json
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
Example
{ "frequency": "hourly"}Schedule not found