Disputes
Provide evidence for a dispute
Provide evidence (text and/or attachments) for a dispute. Used by the merchant to submit proof in response to an evidence request.
post/api/v1/disputes/{disputeId}/provide-evidence
Path parameters
dispute_idstring uuid required
Example:dispute id, uuid format
ID of the dispute.
Request body
Example request
{
"content": "I am providing a photo of the damaged product that was received",
"attachment_ids": [
"attachment id, uuid format"
]
}Response
Success. Evidence was submitted for the dispute.
Example response
{
"id": "evidence id, uuid format",
"dispute_id": "dispute id, uuid format",
"content": "I am providing a photo of the damaged product that was received",
"created_by": "merchant",
"created_at": "2024-01-15T10:30:00Z",
"attachment_ids": [
"attachment id, uuid format"
]
}Changes
Changed in 1 of the 3 revisions of this API.13
- ▲
the response's body type changed from
stringtoobjectfor statusresponse-body-type-changed
- ○
added the optional property
to the response with the statusresponse-optional-property-added
- ○
added the optional property
to the response with the statusresponse-optional-property-added
- ○
added the optional property
to the response with the statusresponse-optional-property-added
- ▲