v1

latestOpenAPI 3.0.1Apache 2.02026-07-1398228598.3 KB
Field Configuration

List Field Configuration Items

Returns a paginated list of items belonging to a field configuration.

get/field-configurations/{id}/items

Path parameters

idstring required

UUID of the field configuration.

Query parameters

pageinteger

1-indexed page number. Defaults to 1.

sizeinteger

Page size. Defaults to 50; maximum 200.

Response

Items successfully retrieved.

Example response

{
  "data": [
    {
      "uuid": "b9e1c0a0-5a3d-4a9c-9b1e-2d6f4b7a1c11__item-01",
      "fieldConfigurationUUID": "b9e1c0a0-5a3d-4a9c-9b1e-2d6f4b7a1c11",
      "title": "Budget Range",
      "category": "CRM",
      "contents": "What is the customer's stated budget range?",
      "promptType": "freeform",
      "contentType": "text"
    }
  ],
  "meta": {
    "totalRecords": 1,
    "pageNumber": 1,
    "pageSize": 50,
    "pageCount": 1
  }
}