GET
/
v2
/
objects
/
people
/
records
/
{record_id}
/
attributes
/
{attribute}
/
values
curl --request GET \
  --url https://api.attio.com/v2/objects/people/records/{record_id}/attributes/{attribute}/values \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "active_from": "2023-01-01T15:00:00.000000000Z",
      "active_until": null,
      "created_by_actor": {
        "type": "workspace-member",
        "id": "a976f6a9-fc2b-4acb-91e7-afb2d18b4e64"
      },
      "first_name": "John",
      "last_name": "Smith",
      "full_name": "John Smith",
      "attribute_type": "personal-name"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

record_id
string
required

A UUID of the person record to fetch attribute values for.

Example:

"891dcbfc-9141-415d-9b2a-2238a6cc012d"

attribute
string
required

A UUID or slug to identify the attribute you want to query values on.

Example:

"name"

Query Parameters

show_historic
boolean
default:false

If true, the endpoint will return all historic values for the attribute. If false, the endpoint will only return the currently active value(s). Defaults to false. Can only be set to true for attributes which support historic data; the endpoint will throw if set to true for non-historic attributes.

Example:

true

limit
integer

The maximum number of results to return. See the full guide to pagination here.

Example:

10

offset
integer

The number of results to skip over before returning. See the full guide to pagination here.

Example:

5

Response

200
application/json

Success

data
object[]
required