Skip to main content
GET
Project Dependencies
Projects can depend on other projects, allowing you to share components and content types across projects. This page covers all dependency management operations.

List Dependencies

GET/app/v1/organizations//projects//dependencies

Path Parameters

organizationId
string
required
Organization ID
projectId
string
required
Project ID

Response


Add Dependency

POST/app/v1/organizations//projects//dependencies

Request Body

projectId
string
required
ID of the project to depend on
version
string
required
Semantic version of the dependency (e.g., “2.0.0”)

Example Request

Response

Returns the updated Project object with the new dependency added.

Error Responses

Dependent Project Not Found

Circular Dependency


Remove Dependency

DELETE/app/v1/organizations//projects//dependencies/

Path Parameters

organizationId
string
required
Organization ID
projectId
string
required
Project ID
dependentProjectId
string
required
ID of the dependent project to remove

Response

Returns the updated Project object with the dependency removed.

Code Examples