Lister les webhooks
Get /settings/webhooks
Paramètres :
Aucun
Réponse :
Noeud de webhook composé de :
Nom | Description | Type |
---|---|---|
id | Id du webhook | String |
url | Url du webhook | String |
description | Description du webhook | String |
events | Evénements utilisés par le webhook | Array of String |
success | Nombre d'appels en succès | Int |
errors | Nombre d'appels en erreur | Int |
createdAt | Date de création | String |
updatedAt | Date de mise à jour | String |
Langage de programmation :
Exemple de réponse :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | [ { "id" : "561d21979932836f57bbb894" , "description" : "Webhook description" , "createdAt" : "1444749719" , "updatedAt" : "1444749719" , "success" : 10, "errors" : 0, "events" : [ "clicked" , "complaint" , "delivered" , "error" , "hardbounced" , "opened" , "rejected" , "softbounced" , "unsubscribed" ] }, { "id" : "561d21a79932badc2d674d52" , "description" : "Webhook description" , "createdAt" : "1444749735" , "updatedAt" : "1444749735" , "errors" : 0, "success" : 20, "events" : [ "delivered" , "opened" , "clicked" ] } ] |