curl --request POST \
--url https://api.dots.dev/api/v2/disputes/{dispute_id}/evidence \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: multipart/form-data' \
--form type=customer_communications \
--form 'content=<string>'
Add an evidence file to the dispute
curl --request POST \
--url https://api.dots.dev/api/v2/disputes/{dispute_id}/evidence \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: multipart/form-data' \
--form type=customer_communications \
--form 'content=<string>'
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
ID of the dispute to add evidence to
The body is of type object
.
Was this page helpful?