---
title: "Update a select option"
method: PATCH
path: "/v2/{target}/{identifier}/attributes/{attribute}/options/{option}"
tags: ["Attributes"]
---

# Update a select option

`PATCH /v2/{target}/{identifier}/attributes/{attribute}/options/{option}`

Updates a select option on an attribute on either an object or a list.

Required scopes: `object_configuration:read-write`.

## Path parameters

- `target` 'objects' | 'lists', required — Whether the attribute is on an object or a list.
- `identifier` string, required — A UUID or slug to identify the object or list the select attribute belongs to.
- `attribute` string, required — A UUID or slug to identify the select attribute.
- `option` string, required — A UUID or select option title to identify the select option you would like to update.

## Request body

- object
  - `data` object, required
    - `title` string — The Title of the select option
    - `is_archived` boolean — Whether or not to archive the select option. See our [archiving guide](/docs/archiving-vs-deleting) for more information on archiving.

## Response `200`

Success

- object — Success
  - `data` SelectOption, required
    - `id` object, required
      - `workspace_id` string, uuid, required — The ID of the workspace
      - `object_id` string, uuid, required — The ID of the object
      - `attribute_id` string, uuid, required — The ID of the attribute
      - `option_id` string, uuid, required — The ID of the select option
    - `title` string, required — The title of the select option
    - `is_archived` boolean, required — Whether or not to archive the select option. See our [archiving guide](/docs/archiving-vs-deleting) for more information on archiving.

## Other responses

- `400` — Bad Request
- `404` — Not Found
- `409` — Conflict

---

[API](https://skmtc.net/d-stoll/apis/attio-api.md) · [All operations](https://skmtc.net/d-stoll/apis/attio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/d-stoll/attio-api/versions/ebcf9b5c6aa3/schema)
