MoneyIn par SDD annulé
MoneyIn par SDD annulé quand il est en attente.
Clé | Description | Valeur |
|---|---|---|
NotifCategory | Type de notification. 17 dans le cas d'un MoneyIn par SDD annulé. | 17 |
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 |
| Amount | Montant à créditer au wallet (total moins la commission) | 10.00 |
| Status | Statut de la transaction.
| 4 |
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=17&NotifDate=2016-05-05T16%3A44%3A55.883&IdTransaction=204&Amount=10.00&Status=4' |
Échantillon de notification POST JSON :
{
"ExtId": "jkdc",
"IntId": "32",
"NotifDate": "2016-03-02T16:44:55.883",
"NotifCategory": "17",
"Status": "4",
"IdTransaction": "204",
"Amount": "10.00"
}