Get a webhook
Get /settings/webhooks/{id}
URL parameters:
Name | Description | Type | Mandatory |
---|---|---|---|
id | Id of the webhook | String | Yes |
Response:
Webhook node with all informations:
Name | Description | Type |
---|---|---|
id | Id of the webhook | String |
url | Webhook url | String |
description | Webhook description | String |
events | Events used for the Webhook | Array of String |
success | Number of call in success | Int |
errors | Number of call in error | Int |
createdAt | Creation date | String |
updatedAt | Update date | String |
Programming language:
Response exemple:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | { "id" : "561d21979932836f57bbb894" , "description" : "Webhook description" , "createdAt" : "1444749719" , "updatedAt" : "1444749719" , "success" : 10, "errors" : 0, "events" : [ "clicked" , "complaint" , "delivered" , "error" , "hardbounced" , "opened" , "rejected" , "softbounced" , "unsubscribed" ] } |