Create a project
This endpoint creates a project.
HTTP Request
POST https://app.resemble.ai/api/v2/projects
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.create({
name: "Cooking Podcast",
description: "Clips generated for our Thursday night cooking podcast",
is_collaborative: true,
is_archived: false
})
Try it out
API Key:
JSON Body: