Boards (post categories) organize feedback into distinct containers with their own settings.
- Delete a webhook
Featurebase API (2026-01-01.nova)
Welcome to the Featurebase API. This API allows you to programmatically interact with your Featurebase organization.
This documentation reflects API version 2026-01-01.nova.
API Versioning
This API uses date-based versioning. Each version is identified by a release date and slug, e.g., 2026-01-01.nova.
Specifying a Version
Include the version in the request header:
Featurebase-Version: 2026-01-01.novaOr set a default version for your organization in the dashboard settings.
Version Compatibility
- Newer versions may add new fields to responses (always backwards-compatible)
- Breaking changes (removed/renamed fields, changed behavior) only occur in new versions
- Your integration will continue to work as long as you pin to a specific version
Authentication
All API requests require authentication via API key.
Include in headers:
Authorization: Bearer <api-key>Create and manage your API keys in the Featurebase dashboard.
Error Handling
The API uses conventional HTTP response codes to indicate success or failure:
2xx- Success4xx- Client errors (bad request, unauthorized, not found, etc.)5xx- Server errors (internal error)
Error Response Format
All errors follow a consistent format:
{
"error": {
"type": "invalid_request_error",
"code": "resource_not_found",
"message": "Post not found",
"param": "id",
"status": 404
}
}Error Types
| Type | Description |
|---|---|
authentication_error | Authentication failed (401) |
authorization_error | Permission denied (403) |
invalid_request_error | Invalid request parameters or resource not found (400, 404, 410) |
api_error | Server-side error (500) |
rate_limit_error | Too many requests (429) |
Request
Updates a webhook's properties. Supports partial updates - only provided fields will be updated.
id- The webhook ID (24-character ObjectId)
All fields are optional. Only provided fields will be updated.
| Field | Type | Description |
|---|---|---|
name | string | Human-readable name (max 100 chars) |
url | string | Webhook endpoint URL (must be HTTPS) |
description | string/null | Description (null to clear) |
topics | string[] | Event topics to subscribe to |
status | string | "active" to reactivate, "paused" to pause delivery |
requestConfig | object | Request configuration |
requestConfig.headers | object | Custom headers to send (max 10) |
You can pause a webhook to temporarily stop receiving events:
{
"status": "paused"
}Webhooks may also be automatically paused or suspended due to delivery failures. To reactivate:
{
"status": "active"
}Reactivating a webhook resets the health metrics and allows it to receive events again.
{
"topics": ["post.created", "post.updated", "post.deleted"]
}{
"requestConfig": {
"headers": {
"X-Custom-Header": "new-value"
}
}
}This endpoint is only available in API version 2026-01-01.nova and newer.
Optional description of the webhook purpose (null to clear)
Array of event topics to subscribe to
Set to "active" to reactivate or "paused" to pause webhook delivery
- Mock serverhttps://docs.featurebase.app/_mock/rest-api/v2/webhooks/{id}
- Productionhttps://do.featurebase.app/v2/webhooks/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
https://docs.featurebase.app/_mock/rest-api/v2/webhooks/507f1f77bcf86cd799439011 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Featurebase-Version: 2026-01-01.nova' \
-d '{
"name": "Production Webhook",
"url": "https://example.com/webhooks",
"description": "Handles all production events",
"topics": [
"post.created",
"post.updated"
],
"status": "active",
"requestConfig": {
"headers": {
"X-Custom-Header": "value"
}
}
}'Success
Webhook signing secret for verifying payloads
Optional description of the webhook purpose
Array of event topics the webhook subscribes to
Last delivery attempt status
ISO timestamp of last successful delivery
Number of errors since last successful delivery
ISO timestamp when the webhook was created
{ "object": "webhook", "id": "507f1f77bcf86cd799439011", "name": "Production Webhook", "url": "https://example.com/webhooks", "secret": "whsec_abc123def456ghi789", "description": "Handles all production events", "topics": [ "post.created", "post.updated" ], "status": "active", "requestConfig": { "timeoutMs": 5000, "headers": { … } }, "lastStatus": { "code": 200, "message": "Success", "timestamp": "2025-01-15T10:30:00.000Z" }, "health": { "lastResponseTime": 150, "avgResponseTime": 200, "lastSuccessAt": "2025-01-15T10:30:00.000Z", "errorsSinceLastSuccess": 0, "consecutiveFailures": 0 }, "version": "1.0", "createdAt": "2025-01-15T10:30:00.000Z", "updatedAt": "2025-01-15T10:30:00.000Z" }
Request
Permanently deletes a webhook.
id- The webhook ID (24-character ObjectId)
Returns a deletion confirmation object:
{
"id": "507f1f77bcf86cd799439011",
"object": "webhook",
"deleted": true
}This operation is irreversible. The webhook and its configuration will be permanently deleted. After deletion, no events will be sent to the webhook endpoint.
This endpoint is only available in API version 2026-01-01.nova and newer.
- Mock serverhttps://docs.featurebase.app/_mock/rest-api/v2/webhooks/{id}
- Productionhttps://do.featurebase.app/v2/webhooks/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://docs.featurebase.app/_mock/rest-api/v2/webhooks/507f1f77bcf86cd799439011 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Featurebase-Version: 2026-01-01.nova'{ "id": "507f1f77bcf86cd799439011", "object": "webhook", "deleted": true }
CommentsCopy for LLM Copy page as Markdown for LLMs View as Markdown Open this page as Markdown Open in ChatGPT Get insights from ChatGPT Open in Claude Get insights from Claude Connect to Cursor Install MCP server on Cursor Connect to VS Code Install MCP server on VS Code
Threaded discussions on posts and changelogs. Comments support voting, moderation, and privacy controls.