> 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

# Transaction Not Found

POST 

Triggered when a dispute or notice references a transaction that can't be found.

Notification name: `transactionnotfound`

Reference: https://docs.payabli.com/developers/webhooks/payops-transaction-not-found

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOpsWebhooks.transactionNotFound:
    post:
      operationId: subpackage_payOpsWebhooks.transactionNotFound
      summary: Transaction Not Found
      description: >-
        Triggered when a dispute or notice references a transaction that can't
        be found.


        Notification name: `transactionnotfound`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TransactionNotFoundContent'
components:
  schemas:
    TransactionNotFoundContent:
      type: object
      properties:
        Event:
          type: string
          enum:
            - TransactionNotFound
          description: Event type identifier
        Paypoint:
          type: string
          description: The name of the merchant/paypoint
        ExternalPaypointId:
          type: string
          description: External paypoint system identifier
        ApplicantEmail:
          type: string
          description: The applicant's email address
        AccountNum:
          type: string
          description: Bank account number
        ProcessorTransId:
          type: string
          description: Processor transaction identifier
        TransactionDate:
          type: string
          description: Transaction date
        Method:
          type: string
          description: Payment processing method
        AccountLast4:
          type: string
          description: Last four digits of the payment account
        AccountType:
          type: string
          description: Payment account type
        Amount:
          type: string
          description: Transaction amount in currency format
        Message:
          type: string
          description: Additional message
      required:
        - Event
        - Paypoint
        - ExternalPaypointId
        - ApplicantEmail
        - AccountNum
        - ProcessorTransId
        - TransactionDate
        - Method
        - AccountLast4
        - AccountType
        - Amount
        - Message
      title: TransactionNotFoundContent

```