> ## Documentation Index
> Fetch the complete documentation index at: https://docs.decodahealth.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Treatment Plan Templates

> List the clinic's treatment-plan templates for the note-generation picker.

Templates are created and managed by admins under Settings; providers only read them here.



## OpenAPI

````yaml get /user/patient/treatment-plan-templates
openapi: 3.1.0
info:
  title: Decoda API
  description: External API documentation for the Decoda Health platform.
  version: '1.0'
servers: []
security: []
paths:
  /user/patient/treatment-plan-templates:
    get:
      tags:
        - Patients
      summary: List Treatment Plan Templates
      description: >-
        List the clinic's treatment-plan templates for the note-generation
        picker.


        Templates are created and managed by admins under Settings; providers
        only read them here.
      operationId: list_treatment_plan_templates_user_patient_treatment_plan_templates_get
      parameters:
        - name: TENANT
          in: header
          required: true
          schema:
            type: string
            title: Tenant
          description: The tenant you are making this request on behalf of
        - name: API-KEY
          in: header
          required: true
          schema:
            type: string
            title: Api-Key
          description: Your api key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/TreatmentPlanTemplateSummary'
                type: array
                title: >-
                  Response List Treatment Plan Templates User Patient Treatment
                  Plan Templates Get
components:
  schemas:
    TreatmentPlanTemplateSummary:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        contentHtml:
          type: string
          title: Contenthtml
        noteTemplateId:
          anyOf:
            - type: string
            - type: 'null'
          title: Notetemplateid
        createdDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Createddate
      type: object
      required:
        - id
        - name
        - contentHtml
      title: TreatmentPlanTemplateSummary
      description: Template list/detail view.

````