Update Dispute

When a client challenges the legitimacy of a transaction made using their registered transacting account, it is referred to as a disputed transaction.

Following the dispute raised in the panel, the client can use the edit option in the action menu to correct any necessary details. Once editing is complete, the details update button will be activated.

PATCH https://stgsecctrl.tutelar.io/api/v1/dispute/update/:disputeId

{
   "success": true,
   "code": 200,
   "message": "Dispute Details updated successfully",
   "data": {}
}

Post Parameters

Post parameters description is given below :

Post Parameter
Type
Is mandatory
Description

disputeType

String

No

Dispute type is used to identify what kind of dispute is raised by the customer , various types of disputes are as follows fraud , chargeback , BO, complaint.

internalDueDate

Date

No

Internal due date refers to the final date that a resolution need to be provided for an dispute.

reasonCode

String

No

Send the reason code based on your transaction type. For instance, if you've made a transaction using a Visa card, send the sample code: 10.1

paymentType

String

No

Payment type is used to mention the payment type the customer is used to pay the required amount , payment type includes credit card , debit card ,POS.

acquirerBankCode

String

No

The payment receiver bank is also called an acquirer bank . Every individual bank have an individual code referred to as acquirer bank code.

disputeAmountTdrDetails

Object

No

The TDR type,amount,amount type is using

To calculate the TDR amount from dispute Amount. disputeAmountTdrDetails has fields [type, amountType ( Type as String )].amount data type is Number.

disputeAmountTaxDetails

Object

No

The TAX type, amount, amount type is using To calculate the TAX amount from dispute Amount. disputeAmountTaxDetails has fields [ type, amountType ( Type as String )].amount data type is Number.

Sample Post Parameters,

Success Response

Failure Response

Last updated