Skip to main content
GET
/
schedules
List schedules
curl --request GET \
  --url https://app.strix.ai/api/v1/schedules \
  --header 'Authorization: Bearer <token>'
{
  "schedules": [
    {
      "id": "<string>",
      "name": "<string>",
      "cron": "<string>",
      "timezone": "<string>",
      "isPaused": true,
      "organization_id": "<string>",
      "created_by": "<string>",
      "domain_ids": [
        "<string>"
      ],
      "repository_ids": [
        "<string>"
      ],
      "concerns": "<string>",
      "focus": "<string>",
      "context": "<string>",
      "last_run_status": "<string>",
      "last_run_error": "<string>",
      "next_run_at": "2023-11-07T05:31:56Z",
      "last_run_at": "2023-11-07T05:31:56Z",
      "run_count": 123,
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API token from Settings > API Access

Response

200 - application/json

List of schedules

schedules
object[]