# Get a Single Webhook Retrieve information about a specific webhook by its ID. If you need to get information regarding a specific webhook, you need to add the webhook_id at the end of the URL. Endpoint: GET /webhooks/{webhookId} Version: 2.0.0 Security: oauth2, apiKey ## Path parameters: - `webhookId` (string, required) ID of the webhook Example: "abc123def456" ## Query parameters: - `workspace_id` (integer, required) ID of the workspace Example: 1 ## Response 200 fields (application/json): - `success` (boolean) Example: true - `data` (object) - `data.id` (string, required) Encoded ID of the webhook Example: "abc123def456" - `data.url` (string, required) The callback URL where webhook events will be sent Example: "https://example.com/webhook/endpoint" - `data.events` (array, required) Array of event types that this webhook is subscribed to Enum: "tracker.started", "tracker.stopped" - `data.token` (string, required) Secret token for verifying webhook authenticity Example: "whsec_1234567890abcdef" ## Response 401 fields (application/json): - `success` (boolean, required) - `message` (string, required) Error message describing what went wrong Example: "An error occurred" - `error` (string,null) Optional additional error details Example: "Internal Server Error" - `meta` (object, required) - `meta.api_version` (string) Example: "2.0.0" - `meta.timestamp` (string) ## Response 404 fields (application/json): - `success` (boolean, required) - `message` (string, required) Error message describing what went wrong Example: "An error occurred" - `error` (string,null) Optional additional error details Example: "Internal Server Error" - `meta` (object, required) - `meta.api_version` (string) Example: "2.0.0" - `meta.timestamp` (string) ## Response 500 fields (application/json): - `success` (boolean, required) - `message` (string, required) Error message describing what went wrong Example: "An error occurred" - `error` (string,null) Optional additional error details Example: "Internal Server Error" - `meta` (object, required) - `meta.api_version` (string) Example: "2.0.0" - `meta.timestamp` (string)