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

# Export Transactions

> The whole filtered ledger (not just one page) as an RFC-4180 CSV download, respecting the same beneficiary_id filter as the list endpoint. Results are scoped to the caller's Business and environment.



## OpenAPI

````yaml GET /v1/reporting/transactions/export
openapi: 3.0.0
info:
  title: Cleff API
  description: >-
    Payout orchestration platform. All endpoints under /v1/ require an API key
    in the Authorization header (Bearer ck_<env>_<id>_<secret>).
  version: 0.0.1
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/reporting/transactions/export:
    get:
      tags:
        - Reporting
      summary: >-
        Export the Transactions ledger for the current Business and environment
        as CSV
      description: >-
        The whole filtered ledger (not just one page) as an RFC-4180 CSV
        download, respecting the same beneficiary_id filter as the list
        endpoint. Results are scoped to the caller's Business and environment.
      operationId: TransactionsController_export
      parameters:
        - name: beneficiary_id
          required: false
          in: query
          schema:
            type: string
        - name: status
          required: false
          in: query
          schema:
            type: string
            enum:
              - pending_approval
              - approved
              - rejected
              - disbursed
              - failed
              - returned
              - canceled
              - settled
              - compliance_hold
        - name: from
          required: false
          in: query
          schema:
            type: string
        - name: to
          required: false
          in: query
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            text/csv:
              schema:
                type: string
                format: binary
        '401':
          description: Missing or invalid credentials
      security:
        - api_key: []
components:
  securitySchemes:
    api_key:
      scheme: bearer
      bearerFormat: ck_<env>_<id>_<secret>
      type: http
      description: >-
        Cleff API key issued to a Business that self-registers via POST
        /v1/registration

````