Payments
Webhooks
Disputes
Get dispute by id
Returns detailed information about dispute.
GET
/
api
/
v1
/
disputes
/
{disputeId}
Copy
curl --request GET \
--url https://api.tabby.ai/api/v1/disputes/{disputeId} \
--header 'Authorization: Bearer <token>'
Copy
{
"dispute": {
"id": "dispute id, uuid format",
"attachments": "Array of links to images which were uploaded by customer",
"payment_id": "payment id, uuid format",
"amount": "100.00",
"currency": "AED",
"created_at": "2018-10-17",
"expired_at": "2018-10-17",
"status": "new",
"reason": "unreceived_refund",
"days_left": 123,
"history": [
{
"attachments": [
"<string>"
],
"created_at": "2018-10-17",
"created_by": "email address of the source",
"content": "customer comment",
"source": "merchant",
"event_type": "dispute_created",
"note": "additional comments"
}
],
"items": [
{
"reference_id": "payment id",
"title": "Order item title",
"unit_price": "100.00"
}
],
"order_number": "#1234",
"comment": "additional comments"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID of the dispute.
Example:
"dispute id, uuid format"
Response
200
application/json
Success. Returns dispute info.
The response is of type object
.
Was this page helpful?
Copy
curl --request GET \
--url https://api.tabby.ai/api/v1/disputes/{disputeId} \
--header 'Authorization: Bearer <token>'
Copy
{
"dispute": {
"id": "dispute id, uuid format",
"attachments": "Array of links to images which were uploaded by customer",
"payment_id": "payment id, uuid format",
"amount": "100.00",
"currency": "AED",
"created_at": "2018-10-17",
"expired_at": "2018-10-17",
"status": "new",
"reason": "unreceived_refund",
"days_left": 123,
"history": [
{
"attachments": [
"<string>"
],
"created_at": "2018-10-17",
"created_by": "email address of the source",
"content": "customer comment",
"source": "merchant",
"event_type": "dispute_created",
"note": "additional comments"
}
],
"items": [
{
"reference_id": "payment id",
"title": "Order item title",
"unit_price": "100.00"
}
],
"order_number": "#1234",
"comment": "additional comments"
}
}
Assistant
Responses are generated using AI and may contain mistakes.