View all Project Dependencies that Depend on a Specific Project

get

/api/restapi/projectDependency/dependsOn/project/{projectId}

This endpoint returns project dependencies dependent on a specific project that meet the following requirements:
  • The object depends on a project with an ID value that matches the value of the {projectId} path parameter.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : List<ApiEntityProjectDependency>
Type: array
Title: List<ApiEntityProjectDependency>
Show Source
  • ApiEntityProjectDependency
    Title: ApiEntityProjectDependency
    This entity represents a ProjectDependency object, a unique ProjectDependency object can be identified by the following combinations of the fields.
    • projectDependencyId
    • projectId,dependentProjectId
    • projectId,dependentProjectCode,dependentProjectWorkspaceCode
    • projectCode,projectWorkspaceCode,dependentProjectId
    • projectCode,projectWorkspaceCode,dependentProjectCode,dependentProjectWorkspaceCode
Nested Schema : ApiEntityProjectDependency
Type: object
Title: ApiEntityProjectDependency
This entity represents a ProjectDependency object, a unique ProjectDependency object can be identified by the following combinations of the fields.
  • projectDependencyId
  • projectId,dependentProjectId
  • projectId,dependentProjectCode,dependentProjectWorkspaceCode
  • projectCode,projectWorkspaceCode,dependentProjectId
  • projectCode,projectWorkspaceCode,dependentProjectCode,dependentProjectWorkspaceCode
Show Source

204 Response

Successful operation with no content.

404 Response

The requested project dependency does not exist, or you do not have access to it.
Back to Top