Skip to main content
GET
/
field-configurations
List Field Configurations
curl --request GET \
  --url https://api.attention.tech/v2/field-configurations \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "uuid": "b9e1c0a0-5a3d-4a9c-9b1e-2d6f4b7a1c11",
      "name": "Enterprise Discovery Questions",
      "organizationUUID": "16b78cec-82ef-46d2-8213-5d3bb7d2571c",
      "teamsUUID": [
        "fe515723-fe2e-4959-a5fa-c4d3937fe7e4"
      ],
      "allTeams": false
    }
  ],
  "meta": {
    "totalRecords": 1,
    "pageNumber": 1,
    "pageSize": 50,
    "pageCount": 1
  }
}

Authorizations

Authorization
string
header
required

Query Parameters

page
integer

1-indexed page number. Defaults to 1.

size
integer

Page size. Defaults to 50; maximum 200.

Response

Field configurations successfully retrieved.

Paginated envelope containing a list of field configurations belonging to the authenticated organization.

data
object[]

Field configurations for the current page.

meta
object
Example:
{
  "pageCount": 5,
  "totalRecords": 100,
  "pageNumber": 1,
  "pageSize": 20
}