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

# List Employee Deduction Templates

> Retrieve a paginated list of employee deduction templates, optionally filtered by company, employee, or template fields.

Returns a paginated array of [Employee Deduction Template](/reference/employee-deduction-templates/get-employee-deduction-template) objects matching the supplied filters.


## OpenAPI

````yaml openapi/zeal-api.json get /employee-deduction-templates
openapi: 3.1.0
info:
  title: zeal-api
  version: '1.0'
servers:
  - url: https://api.zeal.com
security:
  - sec0: []
paths:
  /employee-deduction-templates:
    get:
      description: >-
        Returns a paginated array of Employee Deduction Template objects
        matching the supplied filters.
      parameters:
        - name: limit
          in: query
          description: The number of deduction templates returned per page
          required: false
          schema:
            type: number
        - name: start_at
          in: query
          description: >-
            The deductionTemplateID of the template to start the paginated
            results on
          required: false
          schema:
            type: string
        - name: companyID
          in: query
          description: Matches all templates under the company with this ID
          required: false
          schema:
            type: string
        - name: employeeID
          in: query
          description: Matches all templates under the employee with this ID
          required: false
          schema:
            type: string
        - name: agency_address
          in: query
          description: Matches templates with this agency address
          required: false
          schema:
            type: string
        - name: agency_name
          in: query
          description: Matches templates with this agency name
          required: false
          schema:
            type: string
        - name: case_id
          in: query
          description: Matches templates with this case ID
          required: false
          schema:
            type: string
        - name: custom_name
          in: query
          description: Matches templates with this custom name
          required: false
          schema:
            type: string
        - name: deduction_type
          in: query
          description: Matches templates with this deduction type
          required: false
          schema:
            type: string
        - name: effective_start_date
          in: query
          description: Matches templates with this effective start date
          required: false
          schema:
            type: string
        - name: effective_end_date
          in: query
          description: Matches templates with this effective end date
          required: false
          schema:
            type: string
        - name: employee_contribution_amount
          in: query
          description: Matches templates with this employee contribution amount
          required: false
          schema:
            type: number
        - name: employee_contribution_percentage
          in: query
          description: Matches templates with this employee contribution percentage
          required: false
          schema:
            type: number
        - name: employer_contribution_amount
          in: query
          description: Matches templates with this employer contribution amount
          required: false
          schema:
            type: number
        - name: employer_contribution_percentage
          in: query
          description: Matches templates with this employer contribution percentage
          required: false
          schema:
            type: number
        - name: external_id
          in: query
          description: Matches templates with this external ID
          required: false
          schema:
            type: string
        - name: hsa_type
          in: query
          description: Matches templates with this HSA contribution type
          required: false
          schema:
            type: string
        - name: order_number
          in: query
          description: Matches templates with this order number
          required: false
          schema:
            type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: array
                    description: Array of Employee Deduction Template objects
        '400':
          description: '400'
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  errors:
                    type: array
                    items:
                      type: object
                      properties:
                        message:
                          type: string
                        code:
                          type: integer
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: bearer

````