Project portfolio settings

ProjectPortfolioSettingCompact

PropertyTypeDescription
gidstringGlobally unique identifier of the resource, as a string.
resource_typestringThe base type of this resource.
projectobjectThe project associated with this setting.
project.gidstringGlobally unique identifier of the resource, as a string.
project.resource_typestringThe base type of this resource.
project.namestringName of the project. This is generally a short sentence fragment that fits on a line in the UI for maximum readability. However, it can be longer.
portfolioobjectThe portfolio associated with this setting.
portfolio.gidstringGlobally unique identifier of the resource, as a string.
portfolio.resource_typestringThe base type of this resource.
portfolio.namestringThe name of the portfolio.
is_access_control_inheritedbooleanWhen true, the portfolio members gain access to the project.

Example JSON for ProjectPortfolioSettingCompact:

{
  "gid": "12345",
  "resource_type": "project_portfolio_setting",
  "project": {
    "gid": "12345",
    "resource_type": "project",
    "name": "Stuff to buy"
  },
  "portfolio": {
    "gid": "12345",
    "resource_type": "portfolio",
    "name": "Bug Portfolio"
  },
  "is_access_control_inherited": true
}

ProjectPortfolioSetting

PropertyTypeDescription
gidstringGlobally unique identifier of the resource, as a string.
resource_typestringThe base type of this resource.
projectobjectThe project associated with this setting.
project.gidstringGlobally unique identifier of the resource, as a string.
project.resource_typestringThe base type of this resource.
project.namestringName of the project. This is generally a short sentence fragment that fits on a line in the UI for maximum readability. However, it can be longer.
portfolioobjectThe portfolio associated with this setting.
portfolio.gidstringGlobally unique identifier of the resource, as a string.
portfolio.resource_typestringThe base type of this resource.
portfolio.namestringThe name of the portfolio.
is_access_control_inheritedbooleanWhen true, the portfolio members gain access to the project.
created_atstring (date-time)The time at which this project portfolio setting was created.

Example JSON for ProjectPortfolioSetting:

{
  "gid": "12345",
  "resource_type": "project_portfolio_setting",
  "project": {
    "gid": "12345",
    "resource_type": "project",
    "name": "Stuff to buy"
  },
  "portfolio": {
    "gid": "12345",
    "resource_type": "portfolio",
    "name": "Bug Portfolio"
  },
  "is_access_control_inherited": true,
  "created_at": "2012-02-22T02:06:58.147Z"
}