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

# Export your personal data (GDPR Right of Access)

> Download a copy of all personal data the platform holds about the authenticated user. Supports JSON (default) and CSV output formats.



## OpenAPI

````yaml /openapi.json get /api/data-privacy/export
openapi: 3.0.0
info:
  title: g-tateth CRM API
  version: 1.1.0
  description: >-
    RESTful API for g-tateth CRM platform. Manage conversations, customers,
    users, and more.
  contact:
    name: g-tateth Support
    email: support@g-tateth.com
  license:
    name: Proprietary
servers:
  - url: https://api.g-tateth.com
    description: Production server
  - url: https://staging-api.g-tateth.com
    description: Staging server
security: []
tags:
  - name: Health
    description: API health and status check (no authentication required)
  - name: Authentication
    description: API key and JWT authentication
  - name: API Keys
    description: Create and manage your tenant API keys (requires JWT session)
  - name: Conversations
    description: Manage customer conversations (supports API key or JWT)
  - name: Customers
    description: Manage customer profiles (supports API key or JWT)
  - name: Webhooks
    description: Subscribe to real-time events via webhooks (supports API key or JWT)
  - name: Analytics
    description: Usage analytics and performance metrics (supports API key or JWT)
  - name: Data Privacy
    description: >-
      GDPR data rights endpoints — export, deletion, access, rectification,
      restriction, and objection requests (requires JWT session)
  - name: Widget
    description: Chat widget API endpoints (public — no authentication required)
  - name: Telephony
    description: Voice and phone API endpoints
  - name: Zoho Integration
    description: Zoho CRM integration and data import endpoints
paths:
  /api/data-privacy/export:
    get:
      tags:
        - Data Privacy
      summary: Export your personal data (GDPR Right of Access)
      description: >-
        Download a copy of all personal data the platform holds about the
        authenticated user. Supports JSON (default) and CSV output formats.
      parameters:
        - in: query
          name: format
          schema:
            type: string
            enum:
              - json
              - csv
            default: json
          description: Output format for the exported data
      responses:
        '200':
          description: Personal data export file download
          headers:
            Content-Disposition:
              schema:
                type: string
              description: attachment; filename="my-data-export-{timestamp}.json"
          content:
            application/json:
              schema:
                type: object
                description: Full export of the user's personal data (when format=json)
            text/csv:
              schema:
                type: string
                description: CSV export of the user's personal data (when format=csv)
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - BearerAuth: []
components:
  responses:
    UnauthorizedError:
      description: Authentication required or credentials are invalid
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            success: false
            error: Authentication required
            code: AUTH_REQUIRED
  schemas:
    Error:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
          example: Error message
        code:
          type: string
          example: ERROR_CODE
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        JWT session token authentication. Use for user-context requests. The
        token is returned by the login endpoint and expires after 15 minutes.

````