List all Webhooks
The endpoint allows you to retrieve the list of existing webhooks available for the current account
Request schema
Query parameters
Paging cursor, read more about pagination
Number of records to fetch per page. Accepts a number in the range 1..1000; the default value is 100.
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
GET /v1/webhooks?cursor=trDfa54Ffs9hj&limit=100 HTTP/1.1
Accept: application/json
Authorization: Basic <Replace with base64-encoded key>
Host: api.fivetran.com
Responses
Successful response schema
Response status code
Response status text
The collection of returned items
Unique identifier for the webhook.
The type of the webhook. Specifies whether the webhook is associated with a group or an account.
The endpoint URL where webhook events will be delivered.
List of event types that trigger the webhook.
Indicates if the webhook is enabled to send events immediately upon occurrence.
A secret string used to sign webhook payloads for verification.
Timestamp indicating when the webhook was created.
Identifier of the user who created the webhook setting.
Unique identifier for the group associated with the webhook.
The value of the cursor parameter for the next page
{
"code": "Success",
"message": "Operation performed.",
"data": {
"items": [
{
"id": "webhook_id",
"type": "group",
"url": "https://your-host.your-domain/webhook",
"events": [
"sync_start",
"sync_end"
],
"active": true,
"secret": "******",
"created_at": "2024-01-01T00:00:00Z",
"created_by": "user_id",
"group_id": "group_id"
}
],
"next_cursor": "cursor_value"
}
}