> 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

# Chargeback Updated

POST 

Triggered when a chargeback status changes.

Notification name: `chargebackupdated`

Reference: https://docs.payabli.com/developers/webhooks/payops-chargeback-updated

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOpsWebhooks.chargebackUpdated:
    post:
      operationId: subpackage_payOpsWebhooks.chargebackUpdated
      summary: Chargeback Updated
      description: |-
        Triggered when a chargeback status changes.

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

```