---
title: "Update a call recording"
method: PATCH
path: "/call-recordings/{id}"
tags: ["call-recordings"]
---

# Update a call recording

`PATCH /call-recordings/{id}`

Updates a call recording by ID. Only provided fields are modified.

**Rate limit:** 20 requests per minute

## Path parameters

- `id` string, required

## Request body

- UpdateCallRecordingRequestBody
  - `account_id` string — The account ID to associate with the call recording. Pass an empty string to remove the account association.
  - `custom_fields` CustomFieldValue[] — An array of custom fields to set on the call recording. Only passed in fields will be modified.
    - `slug` string — The slug of the custom field.
    - `value` string — The value of the custom field. Only to be used for single-valued custom fields. If unset, the custom field will be unset. If the custom field is a select field, the value must be the select option slug, which you can find from the GET /custom-fields endpoint. If the custom field is a relationship field, the value must be the related object ID.
    - `values` string[] — The values of the custom field. Only to be used for multi-valued custom fields (ex. multiselect). If unset, the custom field will be unset. If the custom field is a multiselect field, the values must be the select option slugs which you can find from the GET /custom-fields endpoint.

## Response `200`

- UpdateCallRecordingResponseBody
  - `data` CallRecording
    - `account_id` string — The account ID associated with the call recording.
    - `calendar_event_id` string — The calendar event ID associated with the call recording.
    - `created_at` string — The creation time of the call recording in RFC3339 format.
    - `custom_fields` object — Custom fields associated with the call recording.
    - `duration_ms` integer — The duration of the call recording in milliseconds.
    - `end_time` string — The end time of the call recording in RFC3339 format.
    - `external_id` string — The external ID of the call recording from the source system.
    - `id` string — The ID of the call recording.
    - `participant_emails` string[] — The participant emails of the call recording.
    - `source` string — The source of the call recording (e.g. fathom, gong, grain, granola, custom_call_recorder).
    - `start_time` string — The start time of the call recording in RFC3339 format.
    - `summary` string — The summary of the call recording.
    - `title` string — The title of the call recording.
    - `updated_at` string — The last update time of the call recording in RFC3339 format.
    - `url` string — The URL of the call recording.
  - `request_id` string — The request ID for tracking.

## Other responses

- `400` — The request was invalid or could not be completed.
- `404`
- `500` — An unexpected internal error occurred.

---

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