GET
/
api
/
v1
/
disputes
/
{disputeId}
curl --request GET \
  --url https://api.tabby.ai/api/v1/disputes/{disputeId} \
  --header 'Authorization: Bearer <token>'
{
  "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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

dispute_id
string
required

ID of the dispute.

Example:

"dispute id, uuid format"

Response

200
application/json

Success. Returns dispute info.

The response is of type object.