---
title: "List scheduling tasks"
method: GET
path: "/v1/tasks"
tags: ["Scheduling Task"]
---

# List scheduling tasks

`GET /v1/tasks`

Searches scheduling tasks with status, flag, urgent, queue, tag, delegation, assignee, job, and application filters.

## Query parameters

- `cursor` string — Opaque pagination cursor from the previous page's pagination.next_cursor, bound to the same query filters.
- `limit` integer — Page size. Must be between 1 and 100; defaults to 25.
- `ids` string[], nullable — Comma-separated list of IDs; maximum 100 values.
- `assignee_ids` string[], nullable — Matches tasks assigned to any listed employee; combines with other filters using AND.
- `statuses` string[], nullable — Matches tasks with any listed status; combines with other filters using AND.
- `is_urgent` boolean — Matches the task urgency flag; combines with other filters using AND.
- `queue_ids` string[], nullable — Matches tasks in any listed queue; combines with other filters using AND.
- `flagged` boolean — When true, returns tasks with at least one flag; when false, returns tasks with no flags. Combines with other filters using AND.
- `tags` string[], nullable — Matches tasks carrying any listed tag; combines with other filters using AND.
- `delegate_statuses` string[], nullable — Matches tasks with any listed delegation status; combines with other filters using AND.
- `job_ids` string[], nullable — Matches tasks for applications on any listed job; combines with other filters using AND.
- `application_ids` string[], nullable — Matches tasks for any listed application; combines with other filters using AND.
- `created_at_gte` string, date-time — Filters records created at or after this timestamp.
- `created_at_lte` string, date-time — Filters records created at or before this timestamp.
- `updated_at_gte` string, date-time — Filters records updated at or after this timestamp.
- `updated_at_lte` string, date-time — Filters records updated at or before this timestamp.

## Response `200`

Success

- object
  - `data` SchedulingTask[], required
    - `id` string, required — Canonical task ID (tsk_ followed by 32 lowercase hexadecimal UUID characters).
    - `application` object, required
      - `id` string, required — Canonical application ID (app_ followed by 32 lowercase hexadecimal UUID characters).
      - `candidate` object, required
        - `id` string, required — Canonical candidate ID (can_ followed by 32 lowercase hexadecimal UUID characters).
        - `name` string, required
      - `job` object, required
        - `id` string, required — Canonical job ID (job_ followed by 32 lowercase hexadecimal UUID characters).
        - `name` string, required
    - `job_stage` object, required
      - `id` string, required — Canonical job stage ID (stg_ followed by 32 lowercase hexadecimal UUID characters).
      - `name` string, required
    - `status` 'NEEDS_AVAILABILITY' | 'WAITING_FOR_CANDIDATE' | 'READY_TO_SCHEDULE' | 'READY_TO_RESCHEDULE' | 'HOLD' | 'READY_TO_SEND_TO_CANDIDATE' | 'SCHEDULED' | 'COMPLETED' | 'CANCELED' | 'NEEDS_DEBRIEF', required
    - `is_urgent` boolean, required
    - `assignee` object, nullable, required
      - `id` string, required — Canonical employee ID (emp_ followed by 32 lowercase hexadecimal UUID characters).
      - `name` string, required
    - `queue_id` string, nullable, required — Canonical task queue ID (que_ followed by 32 lowercase hexadecimal UUID characters).
    - `tags` string[], required
    - `flags` object[], required
      - `code` string, required
      - `message` string, required
      - `raised_at` string, date-time, required — ISO 8601 timestamp.
    - `is_debrief_required` boolean, required
    - `delegation` object, required
      - `type` 'NONE' | 'AGENT', required
      - `status` 'NONE' | 'QUEUED' | 'ACTIVE' | 'WAITING_ON_CANDIDATE' | 'WAITING_ON_TEAM' | 'COMPLETED' | 'STOPPED', required
    - `notes` object[], required
      - `id` string, required
      - `author` object, required
        - `id` string, required — Canonical employee ID (emp_ followed by 32 lowercase hexadecimal UUID characters).
        - `name` string, required
      - `body` string, required
      - `created_at` string, date-time, required — ISO 8601 timestamp.
    - `created_at` string, date-time, required — ISO 8601 timestamp.
    - `updated_at` string, date-time, required — ISO 8601 timestamp.
    - `app_url` string, uri, required
  - `pagination` Pagination, required
    - `next_cursor` string, nullable, required

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `409` — Conflict
- `410` — Gone
- `500` — Internal error

---

[API](https://skmtc.dev/modernloop/apis/modernloop-platform-api.md) · [All operations](https://skmtc.dev/modernloop/apis/modernloop-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/modernloop/modernloop-platform-api/revisions/33a0f9f44e4c/schema)
