Update Project

PATCH https://app.resemble.ai/api/v2/projects/{project_uuid} or PUT https://app.resemble.ai/api/v2/projects/{project_uuid}

Provide one or more fields to modify the project.

Request Body

FieldTypeRequiredNotes
namestringProject name (max 256 characters).
descriptionstringProject description (max 1024 characters).
is_collaborativebooleanWhether project is collaborative.
is_archivedbooleanWhether project is archived.

Example Request

$curl --request PUT 'https://app.resemble.ai/api/v2/projects/PROJECT_UUID' \
> -H 'Authorization: Bearer YOUR_API_TOKEN' \
> -H 'Content-Type: application/json' \
> --data '{
> "name": "Podcast Season 2",
> "description": "Final edits for season 2",
> "is_collaborative": true,
> "is_archived": false
> }'
1{
2 "success": true,
3 "item": {
4 "uuid": "PROJECT_UUID",
5 "name": "Podcast Season 2",
6 "description": "Final edits for season 2",
7 "is_collaborative": true,
8 "is_archived": false,
9 "created_at": "2024-01-15T10:30:00Z",
10 "updated_at": "2024-01-21T09:05:00Z"
11 }
12}