---
title: "Save dimension values"
method: POST
path: "/v6/dimensions/values"
tags: ["Dimensions"]
---

# Save dimension values

`POST /v6/dimensions/values`

Save a new (or update an existing) set of dimension values

## Request body

- MultiParamDimensionValuePostDto
  - `data` DimensionValuePostDto[], required
    - `id` string — Id of the dimension value, required when updating an existing dimension value
    - `name` string, required — Name of the dimension value
    - `status` 'ACTIVE' | 'INACTIVE' | 'REMOVED' — Status of the dimension value
    - `dimensionId` string, required — Associated dimension ID
    - `parentId` string — Parent dimension value ID

## Response `200`

Success

- ResponseListMultiResponseDimensionValueGetDto
  - `result` 'SUCCESS' | 'FAILURE' — The result of the action performed.
  - `data` MultiResponseDimensionValueGetDto[] — The data generated by the action performed.
    - `result` 'SUCCESS' | 'FAILURE' — The result of the action performed.
    - `statusCode` 200 | 400 | 401 | 403 | 404 | 500 — The HTTP status code for the action performed.
    - `data` DimensionValueGetDto — List of dimension values
      - `id` string, required — Id of the dimension value
      - `dimension` DimensionSubParam, required — Associated dimension
        - `id` string — Id of the dimension
        - `rootId` string — Id of the root dimension
        - `name` string — Name of the dimension
        - `requiredness` 'REQUIRED' | 'NOT_REQUIRED' — Requiredness of the dimension
      - `name` string, required — Name of the dimension value
      - `children` DimensionValueGetDto[], required
    - `error` ErrorItem[]
      - `type` 'UNKNOWN_ERROR' | 'INVALID_TOKEN' | 'EXPIRED_TOKEN' | 'FORBIDDEN' | 'BAD_REQUEST' | 'JSON_ERROR' | 'DUPLICATE' | 'REQUIRED' | 'INVALID_VALUE' | 'NOT_MODIFIABLE' | 'INVALID_FORMAT' | 'NOT_FOUND' — The type of the error. Safe for programmatic use.
      - `message` string — A human-readable message providing more details about the error. Safe for displaying to a user.
      - `param` string — If the error is parameter-specific, the parameter related to the error. This can be used to display a message near the correct form field.
  - `error` ErrorItem[]
    - `type` 'UNKNOWN_ERROR' | 'INVALID_TOKEN' | 'EXPIRED_TOKEN' | 'FORBIDDEN' | 'BAD_REQUEST' | 'JSON_ERROR' | 'DUPLICATE' | 'REQUIRED' | 'INVALID_VALUE' | 'NOT_MODIFIABLE' | 'INVALID_FORMAT' | 'NOT_FOUND' — The type of the error. Safe for programmatic use.
    - `message` string — A human-readable message providing more details about the error. Safe for displaying to a user.
    - `param` string — If the error is parameter-specific, the parameter related to the error. This can be used to display a message near the correct form field.

## Other responses

- `207` — Some dimension values failed to save. See response body for error details.
- `400` — All dimension values failed to save.
- `401` — Not authenticated
- `403` — Not authorized
- `404` — Endpoint not found
- `500` — Internal server error

---

[API](https://skmtc.net/tight/apis/tight-api.md) · [All operations](https://skmtc.net/tight/apis/tight-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tight/tight-api/revisions/e9f0790a89af/schema)
