MoneyIn by SDD canceled
MoneyIn by SDD canceled when his status is pending.
| Key | Description | Value | 
|---|---|---|
| ExtId | External ID of the wallet | jkdc | 
| IntId | Internal ID of the wallet | 220 | 
| NotifCategory | Type of notification | 17 | 
| NotifDate | Date and time the notification was created. Paris time. Format ISO8601 | 2016-05-10T16:44:55.883 | 
| IdTransaction | Transaction ID | 215 | 
| Amount | Debited amount | 10.00 | 
| Status | Transaction status: 
 | 4 | 
You can simulate this POST notification using the Postman API client tool or a cURL request.
Sample 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'
Sample POST JSON notification:
{
	"ExtId": "jkdc",
	"IntId": "32",
	"NotifDate": "2016-03-02T16:44:55.883",
	"NotifCategory": "17",
	"Status": "4",
	"IdTransaction": "204",
	"Amount": "10.00"
}