Dispute

Jump to Response

POST api.ravelin.com/psp/dispute

dispute object

One of the following:

Show definition
timestamp integer required

A unix timestamp preferably as an integer count of milliseconds since 1970-01-01T00:00 UTC (nanoseconds are also accepted).

POST https://api.ravelin.com/psp/dispute HTTP/1.1
Authorization: token ...
Content-Type: application/json

{
  "dispute": {
    "amount": 1337,
    "arn": "string",
    "currency": "GBP",
    "disputeId": "string",
    "disputeTime": 1512828988826,
    "gateway": "braintree",
    "gatewayReference": "string",
    "liabilityShifted": true,
    "outcome": "LOST",
    "reason": "fraud",
    "stage": "CHARGEBACK",
    "transactionId": "string",
    "property1": null,
    "property2": null
  },
  "timestamp": 1667387532297,
  "property1": null,
  "property2": null
}

Response

status integer optional

HTTP response status code.

timestamp integer optional

UNIX timestamp when Ravelin finished handling the request

HTTP/1.1 200 OK
Content-Type: application/json

{
  "status": 200,
  "timestamp": 1667387532297
}

Feedback