curl --request POST \
--url https://api.dots.dev/api/v2/disputes/{dispute_id}/submit \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"description": "<string>"
}'
Submit a dispute
curl --request POST \
--url https://api.dots.dev/api/v2/disputes/{dispute_id}/submit \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"description": "<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 submit
OK
Was this page helpful?