Schedule and extractor to run at a specific time
Schedule and extractor to run at a specific time
- application/json
Request Body required
Request body with the schema defined on the left. Interval is a cron string.
- extractorId string
- startTimestamp int64
- interval string
- 200
- 400
- 401
- 403
- 404
Crawl run schedule
- application/json;charset=UTF-8
- Schema
- Example (from schema)
Schema
- extractorId string
- startTimestamp int64
- nextRunAt int64
- ownerId string
- interval string
intervalData object
type stringtime stringminutes string
{
"extractorId": "string",
"startTimestamp": 0,
"nextRunAt": 0,
"ownerId": "string",
"interval": "string",
"intervalData": {
"type": "string",
"time": "string",
"minutes": "string"
}
}
Validation errors on the request input.
- application/json;charset=UTF-8
- Schema
- Example (from schema)
Schema
- code int
Internal error code
- message string
A message containing a brief description of the error
- error string
(deprecated) A message containing a brief description of the error
{
"code": 0,
"message": "string",
"error": "string"
}
User doesn't own this extractor, or doesn't have a valid session.
- application/json;charset=UTF-8
- Schema
- Example (from schema)
Schema
- code int
Internal error code
- message string
A message containing a brief description of the error
- error string
(deprecated) A message containing a brief description of the error
{
"code": 0,
"message": "string",
"error": "string"
}
User is not allowed to create schedule for this extractor.
- application/json;charset=UTF-8
- Schema
- Example (from schema)
Schema
- code int
Internal error code
- message string
A message containing a brief description of the error
- error string
(deprecated) A message containing a brief description of the error
{
"code": 0,
"message": "string",
"error": "string"
}
Unable to find supplied extractor ID.
- application/json;charset=UTF-8
- Schema
- Example (from schema)
Schema
- code int
Internal error code
- message string
A message containing a brief description of the error
- error string
(deprecated) A message containing a brief description of the error
{
"code": 0,
"message": "string",
"error": "string"
}