Get all Webhooks

Get all Webhooks

GET https://{{accountSlug}}.myeshopbox.com/api/platform/v1/client-webhook

This endpoint allows you to get all webhooks registered.

Headers

{
    "data": [
       {
          "id":"1",
          "resource": "channel_inventory",
          "eventType": "POST",
          "eventSubType": "updated",
          "version": "v1",
          "externalChannelID" : "CLARKS",
          "webhookUrl": "https://hooks.zapier.com/fake-subscription-url",
          "webhookMethod": "POST",
          "createdAt": "2020-02-27T18:32:15.528+05:30",
          "updatedAt": "2020-02-27T18:32:15.528+05:30"
       },
        {
          "id":"2",
          "resource": "channel_inventory",
          "eventType": "POST",
          "eventSubType": "updated",
          "version": "v1",
          "externalChannelID" : "CLARKS",
          "webhookUrl": "https://hooks.zapier.com/fake-subscription-url",
          "webhookMethod": "POST",
          "createdAt": "2020-02-27T18:32:15.528+05:30",
          "updatedAt": "2020-02-27T18:32:15.528+05:30"
       }
    ],
    "page": 1,
    "perPage": 25,
    "total": "30"
}
curl --location --request GET 'http://localhost:8080/_ah/api/esb/v1/property' \
--header 'Content-Type: application/json' \
--header 'Authorization: '

Last updated