Retrieve Webhook Details
This endpoint allows you to retrieve details of the existing webhook for a given identifier
Request schema
Path parameters
webhookId
stringrequired
The webhook ID
example:
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Http + 1.1
GET
https://api.fivetran.com/v1/webhooks/webhookId
GET /v1/webhooks/webhookId HTTP/1.1
Accept: application/json
Authorization: Basic <Replace with base64-encoded key>
Host: api.fivetran.com
Responses
200
Successful response
404
Webhook not found
Successful response schema
code
stringrequired
Response status code
example:
message
string
Response status text
example:
data
objectrequired
id
stringrequired
Unique identifier for the webhook.
example:
type
stringrequired
The type of the webhook. Specifies whether the webhook is associated with a group or an account.
enum:
url
stringrequired
The endpoint URL where webhook events will be delivered.
example:
events
arrayrequired
List of event types that trigger the webhook.
example:
type:
active
booleanrequired
Indicates if the webhook is enabled to send events immediately upon occurrence.
example:
secret
string
A secret string used to sign webhook payloads for verification.
example:
created_at
stringrequired
Timestamp indicating when the webhook was created.
format:
example:
created_by
stringrequired
Identifier of the user who created the webhook setting.
example:
group_id
string
Unique identifier for the group associated with the webhook.
example:
{
"code": "Success",
"message": "Operation performed.",
"data": {
"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"
}
}