GET
/
v2
/
{target}
/
{identifier}
/
attributes
/
{attribute}
/
options
curl --request GET \
  --url https://api.attio.com/v2/{target}/{identifier}/attributes/{attribute}/options \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": {
        "workspace_id": "14beef7a-99f7-4534-a87e-70b564330a4c",
        "object_id": "97052eb9-e65e-443f-a297-f2d9a4a7f795",
        "attribute_id": "41252299-f8c7-4b5e-99c9-4ff8321d2f96",
        "option_id": "08c2c59a-c18e-40c6-8dc4-95415313b2ea"
      },
      "title": "Medium",
      "is_archived": false
    }
  ]
}

Authorizations

Authorization
string
header
required

This API uses OAuth 2.0 with the authorization code grant flow.

Path Parameters

target
enum<string>
required

Whether the attribute is on an object or a list.

Available options:
objects,
lists
Example:

"lists"

identifier
string
required

A UUID or slug to identify the object or list the select attribute belongs to.

Example:

"33ebdbe9-e529-47c9-b894-0ba25e9c15c0"

attribute
string
required

A UUID or slug to identify the attribute you want to list select options on.

Example:

"41252299-f8c7-4b5e-99c9-4ff8321d2f96"

Query Parameters

show_archived
boolean

true if you want the results to include archived select options.

Example:

true

Response

200
application/json

Success

data
object[]
required