Skip to main content
POST
/
v1
/
customer
/
disputes
/
{id}
/
escalate
Escalate dispute to claim
curl --request POST \
  --url https://api-m.sandbox.paypal.com/v1/customer/disputes/{id}/escalate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "action": "BUYER_EVIDENCE"
}'
{
  "links": [
    {
      "href": "<string>",
      "rel": "<string>",
      "method": "GET"
    }
  ]
}

Authorizations

Authorization
string
header
required

Oauth 2.0 authentication

Path Parameters

id
string
required

The ID of the dispute for which to provide the supporting information.

Required string length: 1 - 255

Body

A merchant request to escalate a dispute, by ID, to a PayPal claim.

note
string

The notes about the escalation of the dispute to a claim.

Required string length: 1 - 2000
buyer_escalation_reason
any

Response

A successful request returns the HTTP 200 OK status code and a JSON response body that includes a link to the dispute.

The response for escalate action.

An array of request-related HATEOAS links.

Required array length: 1 - 10 elements
I