v1
latestOpenAPI 3.1.02026-07-228956435.8 KBDisputes
List disputes
Lists the disputes of your organization for the live or test mode of the API key used. Returns the most recent disputes first. Use the status, resource_id, since, and until query parameters to filter the list.
get/disputes
Query parameters
statusstring
Filter by dispute status. One of waiting_documentation, in_review, won, lost, expired. Accepts a comma-separated list.
resource_idstring
Filter by the id of the disputed resource (the payment intent).
sincestring
ISO 8601 datetime in UTC that filters disputes created on or after the provided time.
untilstring
ISO 8601 datetime in UTC that filters disputes created on or before the provided time.
Response
List of disputes for the current mode, most recent first.
Example response
[
{
"id": "cb_8anBm9YpVwXzKqL2",
"amount": 7005,
"created_at": "2024-01-15T17:04:10.284Z",
"currency": "CLP",
"documentation_upload_deadline": "2024-01-22T17:04:10.284Z",
"documents": [
{
"id": "cbd_8anBm9YpVwXzKqL2",
"content_type": "application/pdf",
"created_at": "2024-01-16T17:04:10.284Z",
"dispute_id": "cb_8anBm9YpVwXzKqL2",
"filename": "evidence.pdf",
"size": 102400
}
],
"mode": "live",
"resource_id": "pi_8anBm9YpVwXzKqL2",
"status": "waiting_documentation",
"updated_at": "2024-01-16T17:04:10.284Z"
}
]