---
title: "List fields of a CRM filling template"
method: GET
path: "/crm-filling-templates/{uuid}/fields"
tags: ["CRM Filling Templates"]
---

# List fields of a CRM filling template

`GET /crm-filling-templates/{uuid}/fields`

Returns a paginated list of fields belonging to a CRM filling template.

## Path parameters

- `uuid` string, uuid, required — Template UUID

## Query parameters

- `page` integer — Page number (1-based)
- `size` integer — Number of items per page

## Response `200`

Paginated list of CRM filling template fields

- CrmFillingFieldListResponse
  - `data` CrmFillingField[], required
    - `uuid` string, uuid, required — Field UUID
    - `order` integer, required — Display order of the field within the template
    - `prompt` string, required — AI prompt used to extract the field value from the call
    - `crm` 'hubspot' | 'pipedrive' | 'salesforce' | 'zoho' | 'sellsy' | 'microsoft_dynamics', required — Target CRM system
    - `entityType` 'account' | 'contact' | 'lead' | 'deal' | 'lookup', required — CRM entity type this field maps to
    - `fieldId` string, required — CRM field identifier
    - `fieldLabel` string, required — Human-readable CRM field label
    - `fieldKey` string, required — CRM field key
    - `fieldType` 'string' | 'textarea' | 'number' | 'date' | 'boolean' | 'enum', required — Data type of the CRM field
    - `isActive` boolean, required — Whether the field is currently active
    - `isAutoPush` boolean, required — Whether the field value is automatically pushed to the CRM
    - `createdOn` string, nullable, required — Creation timestamp (ISO 8601)
    - `modifiedOn` string, nullable, required — Last modification timestamp (ISO 8601)
  - `pagination` object, required
    - `page` number, required — Current page number
    - `size` number, required — Items per page
    - `total` number, required — Total number of items

## Other responses

- `404` — CRM filling template not found

---

[API](https://skmtc.dev/modjo/apis/modjo-public-api.md) · [All operations](https://skmtc.dev/modjo/apis/modjo-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/modjo/modjo-public-api/revisions/dcae8b3284e8/schema)
