Header name | Description |
---|---|
Content-Type required |
application/json |
X-API-KEY required |
YOUR_API_KEY |
Param name | Description |
---|---|
project_id required |
Project ID Validations:
|
title required |
Title Validations:
|
description optional |
Description Validations:
|
category optional |
Category Validations:
|
tags optional |
Tags Validations:
|
external_id optional |
External ID Validations:
|
// Failed request POST /api/v2/projects/not-found-id/projects 404 { "error": "project not found" }
// Failed request, missing required "title" parameter POST /api/v2/projects/08mb7Knu21Ao_K3QCkCO/projects { "description": "Sample project from API V2", "category": "Sample" } 422 { "error": "Missing parameter title" }
// Successful request POST /api/v2/projects/VYCUPaelp7MOb48nGZyE/projects { "title": "Sample Project", "description": "Sample project from API V2", "category": "Sample" } 200 { "project": { "id": "362mHh5xY0q-hu9O-YM9", "external_id": null, "project_id": "VYCUPaelp7MOb48nGZyE", "owner": "admin-user-260@example.com", "title": "Sample Project", "description": "Sample project from API V2", "category": "sample", "tags": [], "media_type": "project", "isPublic": false, "thumbnail_asset_id": null, "created_date": "2023-11-27T09:43:36.691Z", "modification_date": "2023-11-27T09:43:36.774Z", "deleted": null, "original_title": "Sample Project" } }
Code | Description |
---|---|
401 | Unauthorized |
404 | Not found |
500 | Internal Server Error |
422 | Missing parameters |