POST
/
disputes
/
update
/
{reference}
Authorization
Header
Body
curl --request POST \
  --url https://api.sandbox.saalal.com/v1/disputes/update/{reference} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "explanation": "No real explanation even now",
  "transaction_slug": "962b954d-bbd3-4b03-8a70-80fb595e9049"
}'
{
  "data": [
    {
      "explanation": "No real explanation even now",
      "reason": "duplicate",
      "slug": {
        "reference": null
      },
      "status": "submitted",
      "transaction_slug": "962b954d-bbd3-4b03-8a70-80fb595e9049"
    }
  ],
  "message": "dispute successfully updated!",
  "statusCode": 200
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Accept
string

Body

application/json
explanation
string
reason
enum<string>
Available options:
duplicate,
not_received,
fraudulent,
product_not_as_described,
service_not_as_described,
canceled,
other
transaction_reference
string

Response

200 - application/json
data
object
message
string
statusCode
integer