Dispute Closed
This notification is triggered when a dispute is resolved.
https://<customerHost:Port>/handlenotification
Header
Field | Description |
---|---|
Content-Type | application/json |
Request example
curl --location --request POST 'https://<customerHost:Port>/notifications' \
-H 'Content-Type: application/json' \
-d '{
"notificationType": "DISPUTE_CLOSED",
"notificationCreationTime": "2025-05-16T12:37:51.066436Z",
"notificationContent": {
"cardReference": "CARD456",
"cardName": "Disputed Card",
"cardCurrency": "EUR",
"cardType": "BALANCELESS",
"relatedTransactionReference": "TXN54321",
"disputeReference": "DISP001",
"disputeCaseResult": "WON",
"disputeWonAmount": "10.00",
"disputeFeeCurrency": "EUR",
"disputeFeeAmount": "0.50",
"disputeAdjustmentAmount": "9.50",
"disputeAdjustmentCurrency": "EUR"
}
}'
Request Body
Field | Description | Type |
---|---|---|
notificationType | Specifies the type of notification being sent. | string required |
notificationCreationTime | Specifies the creation date and time for the notification. The date format conforms to ISO 8601 | string required |
notificationContent | Specifies the notification content | object required |
Properties of notificationContent
Field | Description | Type |
---|---|---|
cardReference | The unique identifier of the card. | string required |
cardName | A user-friendly name for the card, unique within the system. | string required |
cardType | Defines the type of card to be created. (e.g., PREPAID, BALANCELESS). | string required |
linkedBalanceReference | Represents a unique identifier for the Balance assosiated with this instrument. | string required |
transactionReference | Unique identifier for the transaction. | string required |
disputeReference | Unique identifier for the dispute. | string required |
disputeCaseResult | The result for the dispute case. Possible values: WON , WON_PARTIAL ,LOST | string required |
disputeCurrency | Represents the currency in which the dispute was processed. in ISO 4217 format (e.g., USD) | string required |
disputeWonAmount | Represents the total amount won for the dispute | string |
disputeFeeAmount | Represents the total dispute fees applied for the dispute | string |
disputeAdjustementAmount | Contains the amount of funds that were adjusted on the Balance as a result of this dispute | string |