> 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

# Import File Received

POST 

Triggered when an import file is received.

Notification name: `importfilereceived`

Reference: https://docs.payabli.com/developers/webhooks/payops-import-file-received

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOpsWebhooks.importFileReceived:
    post:
      operationId: subpackage_payOpsWebhooks.importFileReceived
      summary: Import File Received
      description: |-
        Triggered when an import file is received.

        Notification name: `importfilereceived`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImportFileReceivedContent'
components:
  schemas:
    ImportFileReceivedContent:
      type: object
      properties:
        Event:
          type: string
          enum:
            - FileReceived
          description: Event type identifier
        Entity:
          type: string
          description: The entity the file belongs to
        EntityType:
          type: string
          description: The type of entity (for example, paypoint)
        FileName:
          type: string
          description: Name of the file
        DateReceived:
          type: string
          description: Timestamp the file was received
        TotalRecord:
          type: string
          description: Total number of records in the file
        TotalUpdate:
          type: string
          description: Number of records successfully processed
        TotalFailed:
          type: string
          description: Number of records that failed
        Error:
          type: string
          description: Error details, when applicable
        Text:
          type: string
          description: Human-readable description of the event
        Status:
          type: string
          description: Status value
        Logo:
          type: string
          description: URL of the merchant/paypoint logo
      required:
        - Event
        - Entity
        - EntityType
        - FileName
        - DateReceived
        - TotalRecord
        - TotalUpdate
        - TotalFailed
        - Error
        - Text
        - Status
        - Logo
      title: ImportFileReceivedContent

```