Dimension value

Create a dimension value

Create dimension value.

post/dimension/{dimensionId}/value

Path parameters

dimensionIdinteger required

The ID of the dimension.

Request body

namestring required

The name of the dimension value.

nrnstring required

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

Example request

{
  "name": "Development",
  "nrn": "organization=1:account=2:namespace=3:application=4"
}

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