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.
project.resource_subtypestringThe subtype of this resource. Different subtypes retain many of the same fields and behavior, but may render differently in Asana or represent resources with different semantic meaning.
Click to show all enum values
  • custom
  • default_project
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.
portfolio.resource_subtypestringThe subtype of this resource. Different subtypes retain many of the same fields and behavior, but may render differently in Asana or represent resources with different semantic meaning.
Click to show all enum values
  • custom
  • default_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",
    "resource_subtype": "default_project"
  },
  "portfolio": {
    "gid": "12345",
    "resource_type": "portfolio",
    "name": "Bug Portfolio",
    "resource_subtype": "default_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.
project.resource_subtypestringThe subtype of this resource. Different subtypes retain many of the same fields and behavior, but may render differently in Asana or represent resources with different semantic meaning.
Click to show all enum values
  • custom
  • default_project
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.
portfolio.resource_subtypestringThe subtype of this resource. Different subtypes retain many of the same fields and behavior, but may render differently in Asana or represent resources with different semantic meaning.
Click to show all enum values
  • custom
  • default_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",
    "resource_subtype": "default_project"
  },
  "portfolio": {
    "gid": "12345",
    "resource_type": "portfolio",
    "name": "Bug Portfolio",
    "resource_subtype": "default_portfolio"
  },
  "is_access_control_inherited": true,
  "created_at": "2012-02-22T02:06:58.147Z"
}