> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dojah.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List All Your Webhooks

> Get every webhook subscription for your app. See URLs, events, and status in one call so you can manage notifications.

#### Request Parameters

```http [GET] theme={null}
 {{baseUrl}}api/v1/webhook/fetch
```

### [](https://docs.dojah.io/docs/subscribe-to-services#header)

#### Headers

| Header        | Type   | Description                                                                                         |
| ------------- | ------ | --------------------------------------------------------------------------------------------------- |
| AppId         | string | Create an app to get your app ID on dashboard [here](https://app.dojah.io/developers/configuration) |
| Authorization | string | Private/secret key. Use `<key>` not `Bearer <key>`                                                  |

### [](https://docs.dojah.io/docs/subscribe-to-services#response-sample)

```json Response theme={null}
{
  "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"
    }
  ]
}
```

### Response Fields

| Field                          | Type   | Description                                                            |
| ------------------------------ | ------ | ---------------------------------------------------------------------- |
| entity                         | array  | List of webhook subscriptions                                          |
| entity\[].app\_id              | string | Your application ID                                                    |
| entity\[].endpoint             | string | The callback URL receiving webhook events                              |
| entity\[].environment          | string | Environment for the webhook (e.g., "live", "sandbox")                  |
| entity\[].service              | string | Service type the webhook is subscribed to (e.g., "sms", "kyc\_widget") |
| entity\[].confirmation\_status | string | Delivery status of the last webhook event (e.g., "DELIVERED")          |
| entity\[].date\_created        | string | Timestamp when the webhook was created (ISO 8601)                      |
| entity\[].date\_updated        | string | Timestamp when the webhook was last updated (ISO 8601)                 |
