Dispute Case Resolved Notify
This notification is triggered when a dispute case is resolved.
https://<customerHost:Port>/handlenotification
Header
Field | Description |
---|---|
Content-Type | application/json |
Request example
curl --location --request POST 'https://<customerHost:Port>/handlenotification' \
-H 'Content-Type: application/json' \
-d '{
"notificationType": "DISPUTE_CASE_RESOLVED_NOTIFY",
"notificationCreationTime": "2025-03-07T15:10:52.454Z",
"notificationContent": {
"notificationKey": "D8CCR7aK5HMEBKYG",
"disputeReference": "0UwIG3fDBjCMHnkuYx5lWFeup",
"cardReference": "0UwIg396z_EfegG1SeLQJLi1I",
"purchaseReference": "0UwIjpjsnG2rZgVYNl4V-4k7Y",
"disputeCaseResult": "WON",
"disputeCurrency": "USD",
"disputeWonAmount": "120.46",
"disputeFeeAmount": "0.02",
"cardAdjustmentAmount": "120.46"
}
}'
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 |
---|---|---|
notificationKey | Represents a unique identifier for Nium that confirms the API method call is genuine | string required |
disputeReference | Represents a unique reference of the dispute | string required |
cardReference | Represents a unique identifier for the virtual card | string required |
purchaseReference | The reference for the respective settlement entry | 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 required |
disputeFeeAmount | Represents the total dispute fees applied for the dispute | string required |
cardAdjustmentAmount | Contains the amount of funds that were adjusted on the virtual card (in the virtual card currency) as a result of this dispute | string |