Skip to main content
Use this endpoint to retrieve the full details of a single webhook subscription by its ID. The response includes the delivery URL, subscribed event topics, shared secret, and timestamps.

Endpoint

Authentication

Path Parameters

string
required
Your Convo project ID.
string
required
The unique ID of the webhook subscription you want to retrieve.

Request Example

Response

Returns a single webhook object containing the following fields:
string
Unique identifier for the webhook subscription.
string
The ID of the Custom App this webhook is registered under.
string
The ID of the project this webhook belongs to.
array
List of event topics this webhook is subscribed to (e.g., "contact.created", "message.received").
string
The HTTPS URL where event payloads are delivered.
string
A secret token for verifying that incoming payloads originate from Convo. Use this to validate the X-Convo-Signature header on incoming webhook requests.
integer
Unix timestamp (milliseconds) of when the webhook was created.
integer
Unix timestamp (milliseconds) of the last update to this webhook.

Example Response

Error Responses