Disputes
Get Dispute by ID
GET
/
v2
/
disputes
/
{dispute_id}
Authorization
Path
curl --request GET \
--url https://api.dots.dev/api/v2/disputes/{dispute_id} \
--header 'Authorization: <authorization>'
{
"evidence": [
{
"type": "customer_communications",
"url": "<string>"
}
],
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"payment_intent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "needs_response"
}
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 retrieve
Response
200 - application/json
evidence
object[]
id
string
payment_intent_id
string
status
enum<string>
Available options:
needs_response
, under_review
, closed
, warning_needs_response
, warning_under_review
, warning_closed
, won
, lost
curl --request GET \
--url https://api.dots.dev/api/v2/disputes/{dispute_id} \
--header 'Authorization: <authorization>'
{
"evidence": [
{
"type": "customer_communications",
"url": "<string>"
}
],
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"payment_intent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "needs_response"
}