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

# Export sessions

> Export the project's contacts as a CSV file download (`Content-Type: text/csv`, filename `users.csv`).
Not filterable; query parameters are ignored. Only contacts with an email address are included, capped
at 75,000 rows, with a fixed column set (userId, name, email, phone, companyName, companyId, lang, plan,
value, sla, deviceType, platform, tags, sessions, blocked, unsubscribed, firstActivity, lastActivity,
createdAt, customData).



## OpenAPI

````yaml https://api.gleap.io/api-docs.json get /sessions/export
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /sessions/export:
    get:
      tags:
        - Session
      summary: Export sessions
      description: >-
        Export the project's contacts as a CSV file download (`Content-Type:
        text/csv`, filename `users.csv`).

        Not filterable; query parameters are ignored. Only contacts with an
        email address are included, capped

        at 75,000 rows, with a fixed column set (userId, name, email, phone,
        companyName, companyId, lang, plan,

        value, sla, deviceType, platform, tags, sessions, blocked, unsubscribed,
        firstActivity, lastActivity,

        createdAt, customData).
      operationId: ExportSessions
      parameters:
        - 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

````