Headers

Header name Description
Content-Type
required
application/json
X-API-KEY
required
YOUR_API_KEY

Params

Param name Description
project_id
required

Project ID

Validations:

  • Must be a String

Examples

// Project is not found
GET /api/v2/projects/not-found-id
404
{
  "error": "project not found"
}
// Successful request
GET /api/v2/projects/Gri9DeG1yV5jD2n2nlJF
200
{
  "project": {
    "id": "Gri9DeG1yV5jD2n2nlJF",
    "external_id": null,
    "project_id": null,
    "owner": "admin-user-214@example.com",
    "title": "Sample Project",
    "description": "Sample project description.",
    "category": "test project category",
    "tags": [
      "test",
      "tag"
    ],
    "media_type": "project",
    "isPublic": false,
    "thumbnail_asset_id": null,
    "created_date": "2023-11-27T09:43:23.700Z",
    "modification_date": "2023-11-27T09:43:23.700Z",
    "deleted": null,
    "original_title": "Sample Project"
  }
}

Errors

Code Description
401 Unauthorized
404 Not found
500 Internal Server Error
422 Missing parameters