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

# Preview Overtime Checks

> Generate a job ID to preview payroll calculations that include overtime-eligible shift hours for pending checks.



## OpenAPI

````yaml openapi/zeal-api.json post /preview/checks/ot
openapi: 3.1.0
info:
  title: zeal-api
  version: '1.0'
servers:
  - url: https://api.zeal.com
security:
  - sec0: []
paths:
  /preview/checks/ot:
    post:
      summary: Preview Overtime Checks
      operationId: preview-overtime-checks
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
                - companyID
                - checks
              properties:
                companyID:
                  type: string
                  description: The ID of the Company
                checks:
                  type: array
                  description: Array of employeeCheckIDs
                  items:
                    type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value:
                    status: 200
                    success: true
                    data:
                      job_id: 232c21f1-cc24-4664-8420-393d0acd21351
                      status: pending
                      request_body:
                        companyID: h0c56cc41q1040ac8a3322342a3bbb462
                        checks:
                          - c614c5ff59d7cc22eae4c9442f315
                          - 22cdbd897e3345a55c3fa22b1712be52
                          - 3942348bd453410485cd783ef1ce8391
                        test_mode: false
                        job_type: preview-checks-flsa
                      created_at: '2022-05-04T19:29:39.134Z'
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 200
                    default: 0
                  success:
                    type: boolean
                    example: true
                    default: true
                  data:
                    type: object
                    properties:
                      job_id:
                        type: string
                        example: 232c21f1-cc24-4664-8420-393d0acd21351
                      status:
                        type: string
                        example: pending
                      request_body:
                        type: object
                        properties:
                          companyID:
                            type: string
                            example: h0c56cc41q1040ac8a3322342a3bbb462
                          checks:
                            type: array
                            items:
                              type: string
                              example: c614c5ff59d7cc22eae4c9442f315
                          test_mode:
                            type: boolean
                            example: false
                            default: true
                          job_type:
                            type: string
                            example: preview-checks-flsa
                      created_at:
                        type: string
                        example: '2022-05-04T19:29:39.134Z'
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value:
                    success: false
                    errors:
                      - message: Must provide a valid companyID
                        code: 50
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                    default: true
                  errors:
                    type: array
                    items:
                      type: object
                      properties:
                        message:
                          type: string
                          example: Must provide a valid companyID
                        code:
                          type: integer
                          example: 50
                          default: 0
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: bearer

````