---
title: "Add a collaborator to a video"
method: POST
path: "/v1/videos/{id}/collaborators"
tags: ["Videos"]
---

# Add a collaborator to a video

`POST /v1/videos/{id}/collaborators`

Grants access to a video for the specified user. The user must be a member of your workspace.

## Path parameters

- `id` string, required — Unique video identifier

## Request body

- AddCollaboratorRequest — Request body for adding a collaborator to a video
  - `email` string, email, required — Email address of the user to add. Must be a member of your workspace.
  - `role` 'editor' | 'viewer', required — Role to grant. Allowed values: 'editor' or 'viewer'.

## Response `200`

Collaborator added successfully

- AddCollaboratorResponse — Response after adding a collaborator to a video
  - `collaborator` Collaborator, required — A collaborator on a video
    - `email` string, email, required — User's email address
    - `name` string, required — User's display name
    - `role` 'editor' | 'viewer', required — Role to grant. Allowed values: 'editor' or 'viewer'.
    - `userId` string, required — User identifier

## Other responses

- `400` — The request was malformed or contained invalid parameters.
- `401` — Authentication is required. Provide a valid API key.
- `403` — You don't have permission to access this resource.
- `404` — The requested resource was not found.
- `429` — You have exceeded the rate limit. Please slow down.
- `500` — An unexpected error occurred
- `501` — The requested operation is not implemented.

---

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