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

# Export engagement recipients

> Export the recipients of a single engagement as CSV (`Content-Type: text/csv`, sent as an attachment
named after the engagement). Accepts the same `filter` query as the recipients list, so a filtered
view (e.g. only recipients who opened) exports exactly what is shown.



## OpenAPI

````yaml https://api.gleap.io/api-docs.json get /engagements/{engagementId}/recipients/export
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /engagements/{engagementId}/recipients/export:
    get:
      tags:
        - Engagement
      summary: Export engagement recipients
      description: >-
        Export the recipients of a single engagement as CSV (`Content-Type:
        text/csv`, sent as an attachment

        named after the engagement). Accepts the same `filter` query as the
        recipients list, so a filtered

        view (e.g. only recipients who opened) exports exactly what is shown.
      operationId: ExportEngagementRecipients
      parameters:
        - in: path
          name: engagementId
          required: true
          schema:
            type: string
        - in: header
          name: project
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema: {}
      security:
        - jwt: []
components:
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT

````