> This is Payabli documentation. For a complete page index, fetch https://docs.payabli.com/llms.txt — append .md to any page URL for lightweight markdown. For section-level indexes, query parameters, and other AI-optimized access methods, see https://docs.payabli.com/ai-agents.md

# Export Report Completed

POST 

Triggered when a report export completes and is ready to download.

Notification name: `exportreportcompleted`

Reference: https://docs.payabli.com/developers/webhooks/payops-export-report-completed

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOpsWebhooks.exportReportCompleted:
    post:
      operationId: subpackage_payOpsWebhooks.exportReportCompleted
      summary: Export Report Completed
      description: |-
        Triggered when a report export completes and is ready to download.

        Notification name: `exportreportcompleted`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExportReportCompletedContent'
components:
  schemas:
    ExportReportCompletedContent:
      type: object
      properties:
        Event:
          type: string
          enum:
            - ExportReportCompleted
          description: Event type identifier
        ExportId:
          type: integer
          description: Unique export identifier
        ReportName:
          type: string
          description: Name of the report
        FileFormat:
          type: string
          description: File format of the export
        FileSize:
          type: string
          description: Size of the exported file
        DownloadUrl:
          type: string
          description: URL to download the exported file
        CompletedAt:
          type: string
          description: Completion timestamp
      required:
        - Event
        - ExportId
        - ReportName
        - FileFormat
        - FileSize
        - DownloadUrl
        - CompletedAt
      title: ExportReportCompletedContent

```