Money-In SDD Canceled

MoneyIn by SDD canceled when his status is pending.

KeyDescriptionValue
ExtIdExternal ID of the walletjkdc
IntIdInternal ID of the wallet220
NotifCategoryType of notification17
NotifDateDate and time the notification was created. Paris time. Format ISO86012016-05-10T16:44:55.883
IdTransactionTransaction ID215
AmountDebited amount10
StatusTransaction status:4
0: success
4: pending
6: error

You can simulate this POST notification using the Postman API client tool or a cURL request.

Example cURL command for the POST x-www-form-urlencoded format notification:

curl -X POST \
https://localhost/notification_handler \
-H 'Content-Type: application/x-www-form-urlencoded' \
-H 'cache-control: no-cache' \
-d 'ExtId=jkdc&IntId=32&NotifCategory=17&NotifDate=2016-05-05T16%3A44%3A55.883&IdTransaction=204&Amount=10.00&Status=4'

Example POST JSON notification:

{
	"ExtId": "jkdc",
	"IntId": "32",
	"NotifDate": "2016-03-02T16:44:55.883",
	"NotifCategory": "17",
	"Status": "4",
	"IdTransaction": "204",
	"Amount": "10.00"
}