Fetch Webhook Config by ID
GET/verification/api/1.0/webhook-config/:id
Retrieves a specific webhook configuration by its ID.
Request
Path Parameters
id stringrequired
The ID of the webhook configuration.
Example: 6a32928801b19c3a8a61991d
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
code integer
message string
data object
_id string
endpoint string
apiKey string
description string
{
"code": 0,
"message": "Success",
"data": {
"_id": "6a32928801b19c3a8a61991d",
"endpoint": "https://your-server.com/webhook",
"apiKey": "secure-shared-webhook-key",
"description": "BGV completions webhook"
}
}
Loading...