MoneyOut confirmed

Key

Description

Value

ExtId

External ID of the wallet

jkdc

IntId

Internal ID of the wallet

101

NotifCategory

Type of notification

37

NotifDate

Date and time the notification was created. Paris time. Format ISO8601

2016-05-05T16:44:55.883

IdTransaction 

Transaction ID

210

AmountCredited amount 10.00
Status

Transaction status:

  • 0: success
  • 4: pending
  • 6: error
0

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

Sample cURL command for POST x-www-form-urlencoded format:

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

Sample POST JSON notification:

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