MoneyOut confirmé

Clé

Description

Valeur

NotifCategory

Type de notification. 37 dans le cas d'un MoneyOut confirmé.

37

NotifDate

Date et heure de la creation de la notification. Heure de Paris. Format ISO8601

2016-11-01T16:44:55.883

IntId

Identifiant interne du wallet

32

ExtId

Identifiant externe du wallet

jkdc

IdTransaction 

Identifiant de la transaction

204

AmountMontant à débiter du wallet (total moins la commission)10.00
Status

Statut de la transaction :

  • 0 : succès
  • 4 : en attente
  • 6 : erreur
0

Vous pouvez simuler cette notification POST en utilisant l'outil client API Postman ou une requête cURL.

Échantillon de commande cURL pour le format de notification POST x-www-form-urlencoded:

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=37&NotifDate=2016-05-05T16%3A44%3A55.883&IdTransaction=204&Amount=10.00&Status=0'

Échantillon de notification POST JSON :

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