Fetch All Webhooks

This endpoint allows you to Fetch All your Application Webhooks.
###Request

{{baseUrl}}api/v1/webhook/fetch

Header

ParameterTypeDescription
AppIdstringyou would need to create an app to get your app ID
Authorizationstringpublic secret key e.g prod_sk_1T1eSavlZxy02OT3OWlvbxK4G

Response Sample

{
  "entity": [
    {
      "app_id": "61e6bef823664a003647505f",
      "endpoint": "https://webhook.site/ec43b51e-eca7-42f0-b794-fb4f7b8c89d0",
      "environment": "live",
      "service": "sms",
      "confirmation_status": "DELIVERED",
      "date_created": "2022-01-18T14:31:36.810231+01:00",
      "date_updated": "2022-01-18T14:31:36.810319+01:00"
    },
    {
      "app_id": "61e6bef823664a003647505f",
      "endpoint": "https://webhook.site/ec43b51e-eca7-42f0-b794-fb4f7b8c89d0",
      "environment": "sandbox",
      "service": "sms",
      "confirmation_status": "DELIVERED",
      "date_created": "2022-01-18T14:22:22.398813+01:00",
      "date_updated": "2022-01-18T14:22:22.398857+01:00"
    }
  ]
}

What’s Next