Disputes
Add Dispute Evidence
POST
/
v2
/
disputes
/
{dispute_id}
/
evidence
Authorization
Path
Body
curl --request POST \
--url https://api.dots.dev/api/v2/disputes/{dispute_id}/evidence \
--header 'Authorization: <authorization>' \
--header 'Content-Type: multipart/form-data' \
--form 'content=<string>' \
--form type=customer_communications
Authorizations
Authorization
string
headerrequiredBasic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Path Parameters
dispute_id
string
requiredID of the dispute to add evidence to
Body
multipart/form-data
content
string
type
enum<string>
Available options:
customer_communications
, refund_policy
, cancellation_policy
, customer_signature
, receipt
, service_documentation
, duplicate_charge_documentation
, shipping_documentation
, uncategorized
curl --request POST \
--url https://api.dots.dev/api/v2/disputes/{dispute_id}/evidence \
--header 'Authorization: <authorization>' \
--header 'Content-Type: multipart/form-data' \
--form 'content=<string>' \
--form type=customer_communications