iQ Suite - Docs
SDK ReferenceWebhooks

List Webhooks

Retrieve a list of all webhooks associated with your account.

Description

The List Webhooks endpoint allows you to retrieve a list of all webhooks that have been created under your account. This is useful for managing and auditing your webhook integrations.

Webhooks

Webhooks are best managed in our platform dashboard. You can create, update, and delete webhooks from the dashboard.

HTTP Request

GET /webhooks

Authentication

All requests must include an Authorization header with a valid API key.

Headers

KeyValue
AuthorizationBearer YOUR_API_KEY
Content-Typeapplication/json

Request Example

try:
webhooks = client.list_webhooks()
for webhook in webhooks:
    print(webhook)
 
except Exception as e:
print(f"Error getting webhooks: {str(e)}")

Response

Success

Status Code: 200 OK

Body:

{
   "data": [
       {
           "id": 7,
           "name": "testing_7",
           "url": "https://test.io",
           "enabled": false,
           "created_at": "2025-01-09T13:28:27.000000Z",
           "updated_at": "2025-01-24T12:37:02.000000Z"
       }
   ]
}

On this page