> 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

# Fraud Alert

POST 

Triggered when a potentially fraudulent payment attempt is detected.

Notification name: `fraudalert`

Reference: https://docs.payabli.com/developers/webhooks/payops-fraud-alert

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOpsWebhooks.fraudAlert:
    post:
      operationId: subpackage_payOpsWebhooks.fraudAlert
      summary: Fraud Alert
      description: |-
        Triggered when a potentially fraudulent payment attempt is detected.

        Notification name: `fraudalert`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FraudAlertContent'
components:
  schemas:
    FraudAlertContent:
      type: object
      properties:
        Paypoint:
          type: string
          description: The name of the merchant/paypoint
        HeaderText:
          type: string
          description: Header text for the alert
        Text:
          type: string
          description: Human-readable description of the event
        Logo:
          type: string
          description: URL of the merchant/paypoint logo
        Ip:
          type: string
          description: IP address associated with the attempt
        Time:
          type:
            - string
            - 'null'
          description: Event timestamp
        Notes:
          type: string
          description: Additional notes
        Event:
          type: string
          enum:
            - FraudAlert
          description: Event type identifier
        CustomerId:
          type: string
          description: The unique identifier for the customer
        CustomerNumber:
          type: string
          description: Internal customer identifier
        LastFourDigitsOfAccountNumber:
          type: string
          description: Last four digits of the account number
        CardDeclineReason:
          type: string
          description: Reason the card was declined, when applicable
      required:
        - Paypoint
        - HeaderText
        - Text
        - Logo
        - Ip
        - Time
        - Notes
        - Event
        - CustomerId
        - CustomerNumber
        - LastFourDigitsOfAccountNumber
        - CardDeclineReason
      title: FraudAlertContent

```