Notification

Chargeback asynchronous notification and create a dispute

If a chargeback is received a notification is sent via our callback notification service. After we have notified your server you will have 7 days to send the proper documentation to dispute the chargeback

The merchant must respond to a chargeback notice within 7 days of the notice.

Otherwise, the merchant loses the opportunity to litigate and the case is closed to the benefit of the payer.

How to configure Chargeback notifications

To configure Chargeback notifications please refer to:

pageCallbacks - Webhooks

Chargeback notification sample

{
    "transactionType": "PayIn",
    "data": {
      "transactionType": "PayIn",
      "externalId": "1669150987",
      "internalId": "85efec30-93c6-4c69-9453-e90e085204cc",
      "paymentMethod": {
        "type": "CreditCard",
        "code": "1000",
        "flow": "DIRECT"
      },
      "country": "ARG",
      "currency": "ARS",
      "amount": 100,
      "accountNumber": "032.032.00000001",
      "confirmed": {
        "currency": "ARS",
        "fxQuote": 1,
        "amount": 100
      },
      "payment": {
        "currency": "ARS",
        "fxQuote": 1,
        "financingFee": 0,
        "amount": 100
      },
      "localTaxes": [],
      "withHoldings": [],
      "fees": {
        "description": "Fee",
        "currency": "ARS",
        "fxSource": 164.502402,
        "fxQuote": 1,
        "amount": 10,
        "account": "032.032.00000001"
      },
      "status": {
        "code": "906",
        "description": "CHARGEBACK",
        "detail": "The payin has a chargeback"
      },
      "merchant": {
        "type": "COMPANY",
        "name": "Company name",
        "lastname": "",
        "document": {
          "type": "CUIT",
          "id": "30-99903208-3"
        },
        "email": "company@mail.com",
        "phone": {
          "countryCode": "54",
          "areaCode": "11",
          "number": "98789632"
        },
        "address": {
          "street": "Street",
          "number": "938",
          "city": "city",
          "state": "state",
          "country": "country",
          "zipCode": "zipCode",
          "comment": "Add any usefull information"
        },
        "birthdate": "2000-01-01",
        "nationality": "nationality"
      },
      "payer": {
        "type": "INDIVIDUAL",
        "name": "Payer's name",
        "lastname": "Payer's last name",
        "document": {
          "type": "DNI",
          "id": "99999999"
        },
        "email": "payer@mail.com",
        "phone": {
          "countryCode": "1",
          "areaCode": "11",
          "number": "98789632"
        },
        "address": {
          "street": "Street",
          "number": "1234",
          "city": "city",
          "state": "state",
          "country": "country",
          "zipCode": "zipCode",
          "comment": "Add any relevant information related to the payer"
        },
        "birthdate": "01/01/1990",
        "nationality": "nationality"
      },
      "intermediaries": [],
      "date": {
        "creationDate": "2022-11-22T21:03:08Z",
        "processedDate": "2022-11-22T21:03:10Z"
      },
      "card": {
        "token": "E9WHYVLAGIfz12qpnQfDt1EsR5Jtb1W59eR9nLmseHk=",
        "bin": "401288",
        "brand": "VISA",
        "country": "CA",
        "name": "Cardholder name",
        "last4": "1881",
        "expirationYear": 2027,
        "expirationMonth": 11,
        "installments": 1
      },
      "errors": []
    }
  }

Last updated