---
title: "Get CRM activities list"
method: GET
path: "/crm/v1/static/tasks"
tags: ["activities"]
---

# Get CRM activities list

`GET /crm/v1/static/tasks`

Returns a paginated list of CRM activities (tasks, calls, meetings, chats, emails).
Example: `GET /crm/v1/static/tasks?page=1&list=20`

## Query parameters

- `page` integer
- `list` integer

## Response `200`

Successful response

- object
  - `data` CrmTaskEntity[]
    - `id` integer
    - `createdBy` integer
    - `title` string
    - `type` 'task' | 'call' | 'meeting' | 'chat' | 'email'
    - `status` 'planned' | 'done' | 'cancelled'
    - `description` string
    - `startTime` integer
    - `endTime` integer
    - `responsibleId` integer
    - `companyId` integer
    - `participants` integer[]
    - `contacts` CrmEntity[]
      - `title` string
      - `owner` integer
      - `source` string
      - `email` object[]
        - `id` string
        - `type` string
        - `value` string
        - `main` boolean
      - `phone` object[]
        - `id` string
        - `type` 'WORK' | 'MOBILE' | 'HOME'
        - `value` string
        - `code` string
      - `messengers` object[]
        - `id` string
        - `type` string
        - `link` string
    - `deals` CrmEntity[]
      - `title` string
      - `owner` integer
      - `source` string
      - `email` object[]
        - `id` string
        - `type` string
        - `value` string
        - `main` boolean
      - `phone` object[]
        - `id` string
        - `type` 'WORK' | 'MOBILE' | 'HOME'
        - `value` string
        - `code` string
      - `messengers` object[]
        - `id` string
        - `type` string
        - `link` string
    - `leads` CrmEntity[]
      - `title` string
      - `owner` integer
      - `source` string
      - `email` object[]
        - `id` string
        - `type` string
        - `value` string
        - `main` boolean
      - `phone` object[]
        - `id` string
        - `type` 'WORK' | 'MOBILE' | 'HOME'
        - `value` string
        - `code` string
      - `messengers` object[]
        - `id` string
        - `type` string
        - `link` string
    - `company` CrmEntity
      - `title` string
      - `owner` integer
      - `source` string
      - `email` object[]
        - `id` string
        - `type` string
        - `value` string
        - `main` boolean
      - `phone` object[]
        - `id` string
        - `type` 'WORK' | 'MOBILE' | 'HOME'
        - `value` string
        - `code` string
      - `messengers` object[]
        - `id` string
        - `type` string
        - `link` string
  - `meta` Meta
    - `currentPage` integer
    - `from` integer
    - `lastPage` integer
    - `links` object[]
      - `url` string
      - `label` string
      - `active` boolean
    - `path` string
    - `perPage` integer
    - `to` integer
    - `total` integer

## Other responses

- `401` — Access token is missing or invalid

---

[API](https://skmtc.net/uspacy/apis/crm-service-2.md) · [All operations](https://skmtc.net/uspacy/apis/crm-service-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/uspacy/crm-service-2/revisions/f80578d43845/schema)
