Update a project
This endpoint updates a project.
HTTP Request
PUT https://app.resemble.ai/api/v2/projects/<project_uuid>
URL Parameters | Type | Description |
---|---|---|
project_uuid | string | UUID of the project to update |
JSON Body Parameters | Type | Description |
---|---|---|
name | string | Name of the project |
description | string | Description of the project |
is_collaborative | boolean | Whether to allow collaboration features for this project |
is_archived | boolean | Whether to archive the project |
HTTP Response
{
"success": true,
"item": {
"uuid": <string>,
"name": <string>,
"description": <string>,
"is_collaborative": <boolean>,
"is_archived": <boolean>,
"created_at": <UTC Date>,
"updated_at": <UTC Date>,
}
}
Examples
NodeJS
1
2
3
4
5
6
7
8
9
10
import { Resemble } from '@resemble/node'
Resemble.setApiKey('YOUR_API_TOKEN')
await Resemble.v2.projects.update(projectUuid, {
name: "Friday Night Cooking Podcast",
description: "Clips generated for the podcast",
is_collaborative: true,
is_archived: false
})
Try it out
API Key:
Project UUID:
JSON Body: