> ## 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.

# Get Contractor Deduction Templates

> Retrieve contractor deduction templates for a company, optionally filtered by contractorID or deduction_type.



## OpenAPI

````yaml openapi/zeal-api.json get /contractor-deduction-templates
openapi: 3.1.0
info:
  title: zeal-api
  version: '1.0'
servers:
  - url: https://api.zeal.com
security:
  - sec0: []
paths:
  /contractor-deduction-templates:
    get:
      summary: Get Contractor Deduction Templates
      operationId: get_contractor-deduction-templates
      parameters:
        - in: query
          name: companyID
          schema:
            type: string
          required: true
          description: ID of company
        - in: query
          name: contractorID
          schema:
            type: string
          description: ID of contractor
        - in: query
          name: deduction_type
          schema:
            type: string
            enum:
              - miscellaneous
              - garnishment
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                OK:
                  summary: OK
                  value:
                    success: true
                    data:
                      - deductionTemplateID: 48ffb95239326ca8713eadb2
                        companyID: fc235f012bae46aa8a082f357715bcfa
                        contractorID: 669fe6216d9eff8ca4c9f0de
                        custom_name: Child Support - John Doe
                        deduction_type: garnishments
                        deduction_credit: false
                        effective_start_date: '2025-01-01'
                        effective_end_date: null
                        external_id: null
                        employee_contribution_amount: 500
                        employee_contribution_percentage: null
                        employer_contribution_amount: null
                        employer_contribution_percentage: null
                        agency_name: State Child Support Agency
                        agency_address: 123 Main St, City, State 12345
                        case_id: CS-2025-001
                        order_number: null
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: array
                    description: >-
                      Contains a list of matching Contractor Deduction Template
                      objects
                    items:
                      type: object
                      properties: {}
                  testMode:
                    type: boolean
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                    default: true
                  errors:
                    type: array
                    items:
                      type: object
                      properties:
                        message:
                          type: string
                          example: Contractor deduction template not found.
                        code:
                          type: integer
                          example: 135
                          default: 0
              examples:
                Not Found:
                  summary: Not Found
                  value:
                    success: false
                    errors:
                      - message: Contractor deduction template not found.
                        code: 135
          description: Not Found
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: bearer

````