Skip to main content
GET
/
api
/
v1
/
cron-job-runs
List Cron Job Runs
curl --request GET \
  --url http://localhost:3301/api/v1/cron-job-runs \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "response_status": 123,
      "response_headers": {},
      "status": "PENDING",
      "error_message": "<string>",
      "execution_time_ms": 123,
      "started_at": "2023-11-07T05:31:56Z",
      "finished_at": "2023-11-07T05:31:56Z",
      "workspace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "trail": "<string>"
}

Authorizations

Authorization
string
header
required

API key authentication

Query Parameters

limit
string

Maximum results (default: 50, max: 100)

status
string

Filter by status (SUCCESS, FAILURE, RUNNING, PENDING)

job_id
string<uuid>

Filter by cron job ID (optional)

Response

200 - application/json

Default Response

items
object[]
trail
string | null