v1
latestOpenAPI 3.1.02026-07-131991131.4 KBDisputes
Challenge disputes
Challenge disputes (request Tabby support to take a look at the case). Only 20 disputes can be challenged within a single request. Only disputes with status 'new' might be challenged.
post/api/v1/disputes/challenge
Request body
Example request
{
"dispute_id": "uuid",
"description": "Comment for Tabby support",
"reason": "merchant_reason_other",
"amount": "100",
"attachment_ids": [
"attachment id, uuid format"
]
}Response
Success. Disputes were challenged.
Example response
{
"disputes": [
{
"id": "dispute id, uuid format",
"attachments": [
"attachment_1"
],
"payment_id": "payment id, uuid format",
"amount": "100.00",
"currency": "AED",
"created_at": "2018-10-17T00:00:00.000Z",
"expired_at": "2018-10-17T00:00:00.000Z",
"status": "new",
"reason": "unreceived_refund",
"items": [
{
"reference_id": "payment id",
"title": "Order item title",
"unit_price": "100.00"
}
],
"order_number": "#1234",
"comment": "additional comments"
}
]
}