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

# exports.list

> List export records with filters (document, integration, date range) for the current workspace.



## OpenAPI

````yaml https://developer.api.receiptor.ai/openapi.json post /capabilities/exports.list
openapi: 3.0.0
info:
  title: Receiptor AI API
  description: >-
    API for Receiptor AI — automates financial document extraction,
    categorization, and integration with accounting systems. All capabilities
    are available via `POST /v1/capabilities/{slug}` with a JSON request body.
  version: 1.0.0
  contact:
    name: Receiptor AI
    url: https://receiptor.ai
    email: info@receiptor.ai
servers:
  - url: https://developer.api.receiptor.ai/v1
    description: Production
security: []
tags:
  - name: Capabilities
    description: Execute product capabilities
  - name: Discovery
    description: Discover available capabilities
  - name: OAuth2
    description: OAuth 2.0 authorization flow
paths:
  /capabilities/exports.list:
    post:
      tags:
        - Capabilities
      summary: exports.list
      description: >-
        List export records with filters (document, integration, date range) for
        the current workspace.
      operationId: exports.list
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                documentId:
                  type: string
                  description: Filter export records by document ID
                integrationSlug:
                  type: string
                  enum:
                    - xero
                    - quickbooks
                    - google-drive
                    - dropbox
                    - pdf-export
                    - csv-export
                    - zip-export
                    - email-forward
                  description: >-
                    Filter export records by integration (xero, quickbooks,
                    google-drive, etc.)
                dateFrom:
                  type: string
                  description: Start date filter (ISO format)
                dateTo:
                  type: string
                  description: End date filter (ISO format)
                limit:
                  type: integer
                  minimum: 1
                  maximum: 100
                  default: 20
                  description: Max records to return (1-100)
                offset:
                  type: integer
                  minimum: 0
                  default: 0
                  description: Pagination offset
              additionalProperties: false
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  code:
                    type: integer
                    example: 200
                  data:
                    type: object
                    properties:
                      result:
                        type: object
                        description: Capability-specific result
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
      security:
        - apiKey: []
components:
  responses:
    BadRequest:
      description: Invalid input
      content:
        application/json:
          schema:
            type: object
            properties:
              success:
                type: boolean
                example: false
              code:
                type: integer
                example: 400
              error:
                type: object
                properties:
                  errorCode:
                    type: integer
                    example: 400
                  errorMessage:
                    type: string
    Unauthorized:
      description: Authentication required
      content:
        application/json:
          schema:
            type: object
            properties:
              success:
                type: boolean
                example: false
              code:
                type: integer
                example: 401
              error:
                type: object
                properties:
                  errorCode:
                    type: integer
                    example: 401
                  errorMessage:
                    type: string
                    example: API key authentication required
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            type: object
            properties:
              success:
                type: boolean
                example: false
              code:
                type: integer
                example: 404
              error:
                type: object
                properties:
                  errorCode:
                    type: integer
                    example: 404
                  errorMessage:
                    type: string
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API key prefixed with `sk_`. Obtain from the Receiptor AI dashboard.

````