Applying attributes
POST {{baseUrl}}/org/:orgId/project/:projectId/attributes
Attributes are static and non-configurable fields which allow to add additional metadata to a project. Attributes have a pre-defined list of values that a user can select from.
Business criticality | Environment | Lifecycle stage |
---|---|---|
critical | frontend | production |
high | backend | development |
medium | internal | sandbox |
low | external | |
mobile | ||
saas | ||
onprem | ||
hosted | ||
distributed |
It is possible to assign multiple values to each attribute, but you can only assign values to one of the predefined attribute categories, using the predefined options for this category. Assigning an attribute requires the caller to be either an Org Administrator or a Group Administrator. Assigning an attribute will override any existing values that the specific attribute already has set. In order to clear out an attribute value, an empty array can be set.
Request Body
{
"criticality": "${criticality}",
"environment": "${environment}",
"lifecycle": "${lifecycle}"
}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string |