---
title: "List call recordings"
method: GET
path: "/v2/meetings/{meeting_id}/call_recordings"
tags: ["Call recordings"]
---

# List call recordings

`GET /v2/meetings/{meeting_id}/call_recordings`

List all call recordings for a meeting.

This endpoint is in beta. We will aim to avoid breaking changes, but small updates may be made as we roll out to more users.

Required scopes: `meeting:read`, `call_recording:read`.

## Path parameters

- `meeting_id` string, uuid, required — The ID of the meeting to list call recordings for.

## Query parameters

- `limit` integer — The maximum number of results to return. Defaults to 50 with a maximum of 200.
- `cursor` string — A cursor for pagination. Use the `next_cursor` from the previous response to get the next page of results.

## Response `200`

Success

- object — Success
  - `data` object[], required
    - `id` object, required
      - `workspace_id` string, uuid, required — The ID of the workspace this call recording belongs to.
      - `meeting_id` string, uuid, required — The ID of the meeting associated with this call recording.
      - `call_recording_id` string, uuid, required — The call recording ID of the call recording.
    - `status` 'processing' | 'completed' | 'failed', required — The status of the call recording. When a call recording is first created, it will have a status of `PROCESSING`. Once the recording is ready, it will transition to `COMPLETED`. If the recording fails for any reason, the status will be `FAILED`.
    - `web_url` string, uri, required — A URL that links directly to the call recording in the Attio web application.
    - `created_by_actor` object, required — The actor that created this call recording.
      - `id` string, nullable — An ID to identify the actor.
      - `type` 'api-token' | 'workspace-member' | 'system' | 'app', nullable — The type of actor. [Read more information on actor types here](/docs/actors).
    - `created_at` string, required — The timestamp of when the call recording was created.
  - `pagination` object, required
    - `next_cursor` string, nullable, required

---

[API](https://skmtc.net/attio/apis/attio-api.md) · [All operations](https://skmtc.net/attio/apis/attio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/attio/attio-api/versions/40a8e41d06a2/schema)
