> 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

# Pre-Arbitration Received

POST 

Triggered when a chargeback pre-arbitration is received.

Notification name: `receivedprearbitration`

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

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOpsWebhooks.receivedPreArbitration:
    post:
      operationId: subpackage_payOpsWebhooks.receivedPreArbitration
      summary: Pre-Arbitration Received
      description: |-
        Triggered when a chargeback pre-arbitration is received.

        Notification name: `receivedprearbitration`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReceivedPreArbitrationContent'
components:
  schemas:
    ReceivedPreArbitrationContent:
      type: object
      properties:
        Event:
          type: string
          enum:
            - ReceivedPreArbitration
          description: Event type identifier
        Text:
          type: string
          description: Human-readable description of the event
        Paypoint:
          type: string
          description: The name of the merchant/paypoint
        ExternalPaypointId:
          type: string
          description: External paypoint system identifier
        CustomerId:
          type: string
          description: The unique identifier for the customer
        CustomerNumber:
          type: string
          description: Internal customer identifier
        TransId:
          type: string
          description: Unique transaction identifier
        NetAmount:
          type: string
          description: Net amount in currency format
        AccountType:
          type: string
          description: Payment account type
        Method:
          type: string
          description: Payment processing method
        WalletType:
          type: string
          description: Digital wallet type, when applicable
        ChargebackId:
          type: integer
          description: Unique chargeback identifier
        OriginalChargebackId:
          type: integer
          description: Identifier of the original chargeback
        ChargebackDate:
          type: string
          description: Chargeback date
        ReasonCode:
          type: string
          description: Chargeback or return reason code
        Reason:
          type: string
          description: Reason description
      required:
        - Event
        - Text
        - Paypoint
        - ExternalPaypointId
        - CustomerId
        - CustomerNumber
        - TransId
        - NetAmount
        - AccountType
        - Method
        - WalletType
        - ChargebackId
        - OriginalChargebackId
        - ChargebackDate
        - ReasonCode
        - Reason
      title: ReceivedPreArbitrationContent

```