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

# Export tasks matching filter

> Exports all tasks matching the filter supplied in the form-encoded request body, using the optional clientTime value to align timestamps with the caller's timezone.



## OpenAPI

````yaml /schema.json post /tasks/export/bulk
openapi: 3.1.0
info:
  version: 01KV4EC0SHV95TK2YR66AMKFZC
  title: Alumio API
  description: Access Alumio through OpenAPI v3.1.
servers:
  - url: /api/v1
security: []
paths:
  /tasks/export/bulk:
    post:
      tags:
        - Tasks
      summary: Export tasks matching filter
      description: >-
        Exports all tasks matching the filter supplied in the form-encoded
        request body, using the optional clientTime value to align timestamps
        with the caller's timezone.
      operationId: exportTasksBulk
      parameters:
        - name: space
          in: query
          description: Space Identifier
          required: false
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                filter:
                  type: string
                clientTime:
                  type: string
                  pattern: ^\d+$
      responses:
        '200':
          description: OK

````