---
title: "List checklist templates"
method: GET
path: "/checklistTemplates"
tags: ["checklistTemplates"]
---

# List checklist templates

`GET /checklistTemplates`

## Query parameters

- `enabled` boolean
- `type` 'appointment'
- `includeFiltersCount` boolean
- `user` string
- `deleted` 0 | 1
- `createdBy` string
- `updatedBy` string
- `createdAt` string, date-time
- `updatedAt` string, date-time
- `page` integer
- `limit` integer
- `_populate` string
- `_select` string

## Response `200`

List of checklist templates

- object
  - `response` ChecklistTemplateResponse[], required
    - `_id` string — Luma's internal ID of an object.
    - `user` string — The ID of the root account user.
    - `deleted` 0 | 1 — Flag for logical deletion where 1 means deleted.
    - `createdBy` string — The ID of the user who created this object.
    - `updatedBy` string — The ID of the user who updated this object.
    - `createdAt` string, date-time — The date/time when this object was created.
    - `updatedAt` string, date-time — The date/time when this object was updated.
    - `name` string — Name of the checklist template.
    - `enabled` boolean — Whether this template is active and usable to build new checklists.
    - `type` 'appointment' — The kind of template.
    - `tag` string — Merge-tag identifier for this template, auto-generated if not provided.
    - `items` object[] — The tasks generated checklists will include.
      - `name` object — Localized name of this item, keyed by language code.
      - `ref` 'patient-form-template' — Type of resource this item's `refId` points to.
      - `refId` string — ID of the PatientFormTemplate that fulfills this item.
      - `category` 'intake' | 'demographics' | 'consent' | 'insurance' | 'payment' — The category this item belongs to. Kept in sync with the linked PatientFormTemplate's category.
      - `expiration` object — When items generated from this template item expire. Either `value`+`unit`, or `cron`, but not both.
        - `value` integer
        - `unit` 'days' | 'weeks' | 'months' | 'years'
        - `cron` string
      - `filters` ChecklistTemplateFilter[] — Item-level conditions controlling when this item is included.
        - `path` string — The field path being compared, for example a facility, provider, or appointment type identifier.
        - `value` string — The value to compare the field at `path` against.
        - `comparision` 'eq' | 'gt' | 'gte' | 'lt' | 'lte' | 'ne' | 'regex' | 'js' — How `path` and `value` are compared.
        - `options` string — Additional options for the comparison, such as regex flags.
      - `defaultStatus` 'not-ready' | 'pending' | 'in-progress' | 'skipped' | 'completed' — Default status assigned to items generated from this template item.
    - `filters` ChecklistTemplateFilter[] — Template-level conditions controlling when this template applies, such as specific appointment types, facilities, or providers.
      - `path` string — The field path being compared, for example a facility, provider, or appointment type identifier.
      - `value` string — The value to compare the field at `path` against.
      - `comparision` 'eq' | 'gt' | 'gte' | 'lt' | 'lte' | 'ne' | 'regex' | 'js' — How `path` and `value` are compared.
      - `options` string — Additional options for the comparison, such as regex flags.
    - `checklistTemplateFilter` object
      - `path` string — The field path being compared, for example a facility, provider, or appointment type identifier.
      - `value` string — The value to compare the field at `path` against.
      - `comparision` 'eq' | 'gt' | 'gte' | 'lt' | 'lte' | 'ne' | 'regex' | 'js' — How `path` and `value` are compared.
      - `options` string — Additional options for the comparison, such as regex flags.
  - `page` integer, required
  - `size` integer, required

## Other responses

- `401` — Not authenticated
- `403` — Access token does not have the required scope

---

[API](https://skmtc.net/lumahealth/apis/rest-service.md) · [All operations](https://skmtc.net/lumahealth/apis/rest-service/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lumahealth/rest-service/revisions/d3c75c2a2f1d/schema)
