POST
/
disputes
/
update-evidence
curl --request POST \
  --url https://app.disputeninja.io/api/v1/disputes/update-evidence \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "stripe_dispute_id": "<string>",
  "evidence": {
    "products": [
      {
        "product_title": "<string>",
        "price": 123,
        "quantity": 123,
        "currency_code": "<string>"
      }
    ],
    "delivery_method": "digital",
    "merchant_profile": {
      "merchant_id": "<string>",
      "merchant_name": "<string>",
      "merchant_website": "<string>"
    },
    "shipping_tracking_numbers": [
      "<string>"
    ],
    "additional_evidence": {}
  }
}'
{
  "message": "<string>",
  "dispute_id": "<string>",
  "stripe_dispute_id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
stripe_dispute_id
string
required

The Stripe dispute ID to which the evidence data will be attached

evidence
object
required

Response

200
application/json
Evidence updated successfully
message
string

A message indicating the success of the evidence data upload

dispute_id
string

The ID of the dispute associated with the uploaded evidence

stripe_dispute_id
string

The Stripe dispute ID associated with the uploaded evidence