Skip to main content
The Dispute Data Model simplifies the handling and retrieval of disputes from different payment gateways. The model provides a unified representation of disputes, enabling you to easily access and manage dispute data from different platforms.
  • Unified disputes properties: The model provides a unified representation of disputes from different payment gateways, enabling you to easily access and manage dispute data from different platforms.
  • Comprehensive disputes information: The model provides a comprehensive representation of disputes, including information like the dispute amount, currency, reason_code, reason_description, status, payment_id, platform_id, created_at, and more.

Attributes

Dispute Attributes

PropertyTypeDescription
rootfi_idintegerThe RootFi ID of the dispute
rootfi_created_atstringThe ISO 8601 timestamp at which the record was created in RootFi
rootfi_updated_atstringThe ISO 8601 timestamp at which the record was last updated in RootFi
rootfi_company_idintegerThe RootFi company ID associated with the dispute
platform_idstringThe Platform’s ID for the dispute
platform_unique_idstringThe platform’s unique identifier for the dispute
created_atstringThe date and time the dispute was created
amountnumberThe amount of the dispute
currency_idstringThe currency id of the dispute
statusenumThe status of the dispute (WON, LOST, PENDING, OPEN, CLOSED)
reason_codestringThe reason code of the dispute
reason_descriptionstringThe reason description of the dispute
payment_idstringThe payment id of the dispute

Properties Supported

PropertyTypeDescription
platform_idstringThe Platform’s ID for the dispute
created_atstringThe date and time the dispute was created
amountnumberThe amount of the dispute
currency_idstringThe currency id of the dispute
statusenumThe status of the dispute. Allowed values are WON, LOST, PENDING, OPEN, CLOSED
reason_codestringThe reason code of the dispute
reason_descriptionstringThe reason description of the dispute
payment_idstringThe payment id of the dispute
{
  "rootfi_id": 157,
  "rootfi_created_at": "2024-01-22T05:07:31.465Z",
  "rootfi_updated_at": "2024-01-22T05:07:31.000Z",
  "rootfi_company_id": 1089,
  "platform_id": "dp_123456",
  "created_at": "2024-01-22T05:07:31.000Z",
  "amount": 100.00,
  "currency_id": "USD",
  "status": "PENDING",
  "reason_code": "product_not_received",
  "reason_description": "Customer claims product was not received",
  "payment_id": "pay_123456"
}