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

# Time Report (deprecated)

> Legacy export of team time records, returned as JSON. Kept for backward compatibility; new integrations should use `GET /team/time` or the dashboard reports.



## OpenAPI

````yaml /openapi.json get /team/time/export
openapi: 3.1.1
info:
  title: Everhour API
  version: 1.0.0
  license:
    name: Proprietary
    identifier: LicenseRef-Proprietary
servers:
  - url: https://api.everhour.com
security:
  - ApiKeyAuth: []
tags:
  - name: Clients
  - name: Custom Fields
  - name: Expenses
  - name: Invoices
  - name: Projects
  - name: Reports
  - name: Schedule
  - name: Tasks
  - name: Time Off
  - name: Time Records
  - name: Timecards
  - name: Timers
  - name: Timesheets
  - name: Users
  - name: Webhooks
paths:
  /team/time/export:
    get:
      tags:
        - Reports
      summary: Time Report (deprecated)
      description: >-
        Legacy export of team time records, returned as JSON. Kept for backward
        compatibility; new integrations should use `GET /team/time` or the
        dashboard reports.
      operationId: timeReportDeprecated
      parameters:
        - name: from
          in: query
          required: false
          description: Date from you what to fetch reported time (format YYYY-MM-DD)
          schema:
            type: string
            example: '2018-01-01'
        - name: to
          in: query
          required: false
          description: Date to you what to fetch reported time (format YYYY-MM-DD)
          schema:
            type: string
            example: '2018-01-31'
        - name: fields
          in: query
          required: false
          description: >-
            Comma-separated columns. Allowed: date, user, task, project, month,
            projects.
          schema:
            type: string
            example: date,user,task
        - name: project
          in: query
          required: false
          description: Filter by project (encoded ID).
          schema:
            type: string
        - name: client
          in: query
          required: false
          description: Filter by client ID.
          schema:
            type: integer
        - name: user
          in: query
          required: false
          description: Filter by user ID.
          schema:
            type: integer
        - name: allowTimeWithoutTask
          in: query
          required: false
          description: Include time records that have no task.
          schema:
            type: boolean
            example: false
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TimeExportObject'
        '401':
          description: Unauthorized
components:
  schemas:
    TimeExportObject:
      type: object
      properties:
        time:
          type: number
          description: Report time in seconds
          example: 7200
        date:
          type: string
          description: Will appear only if 'date' passed to fields parameter
          example: '2018-03-20'
        user:
          type: object
          description: Will appear only if 'user' passed to fields parameter
          properties:
            id:
              type: number
              example: 1304
            name:
              type: string
              example: Chris Wonder
        project:
          type: object
          description: Will appear only if 'project' passed to fields parameter
          properties:
            id:
              type: string
              example: ev:9876543210
            name:
              type: string
              example: Project Name
            workspace:
              type: string
              example: Project Workspace Name
        task:
          type: object
          description: Will appear only if 'task' passed to fields parameter
          properties:
            id:
              type: string
              example: ev:1234567890
            name:
              type: string
              example: Task Name
            status:
              type: string
              example: open
            type:
              type: string
              example: task
            iteration:
              type: string
              example: Iteration/column/section name
            number:
              type: number
              example: 123
            dueAt:
              type: string
              example: '2018-01-20'
      required:
        - time
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key

````