---
title: "List Tasks"
method: GET
path: "/v1/tasks"
tags: ["Tasks"]
---

# List Tasks

`GET /v1/tasks`

## Query parameters

- `status_id` integer — Filter by task status id (see the catalog).
- `contact_id` integer — Tasks assigned to or related to this contact.
- `policy_id` integer — Tasks related to this policy.
- `due_from` string, date — Due date from (inclusive).
- `due_to` string, date — Due date to (inclusive).
- `cursor` string — Opaque cursor from a previous response (next_cursor).
- `page_size` integer — Records per page (max 100).

## Response `200`

Successful Response

- ExternalListExternalTaskView
  - `data` ExternalTaskView[], required
    - `id` string, required
    - `title` string, required
    - `description` string
    - `due_date` string, date
    - `priority` string — highest | high | medium | low | lowest
    - `status` ExternalRecord — Relación compacta hacia el exterior: solo id y nombre.
      - `id` string, required
      - `name` string
    - `source` string — Where the task was created from.
    - `contact` ExternalRecord — Relación compacta hacia el exterior: solo id y nombre.
      - `id` string, required
      - `name` string
    - `assigned_contact` ExternalRecord — Relación compacta hacia el exterior: solo id y nombre.
      - `id` string, required
      - `name` string
    - `assigned_user` ExternalRecord — Relación compacta hacia el exterior: solo id y nombre.
      - `id` string, required
      - `name` string
    - `policy` ExternalRecord — Relación compacta hacia el exterior: solo id y nombre.
      - `id` string, required
      - `name` string
    - `created_by` ExternalRecord — Relación compacta hacia el exterior: solo id y nombre.
      - `id` string, required
      - `name` string
    - `created` string, date-time
    - `last_update` string, date-time
    - `completed_on` string, date-time
  - `next_cursor` string
  - `has_more` boolean

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Validation Error
- `500` — Internal Server Error

---

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