Dimension Value

Update a dimension value

Updates a dimension value.

patch/dimension/{dimensionId}/value/{id}

Path parameters

dimensionIdinteger required

The ID of the dimension.

idinteger required

The ID of the dimension value.

Request body

namestring

The name of the dimension value.

status'active' | 'inactive'

The status of the dimension value.

Example request

{
  "name": "Development",
  "status": "active"
}

Response

The operation was successful

idinteger

A system-wide unique ID representing the value.

namestring

The name of the dimension value.

status'active' | 'inactive'

The status of this runtime configuration dimension value.

slugstring

A string representing the dimension value.

nrnstring

NRN (at or below) where the dimension value applies.

Example response

{
  "id": 9876,
  "name": "Staging",
  "status": "active",
  "slug": "staging",
  "nrn": "organization=1:account=2:namespace=3:application=4"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.