stile
PlaygroundWebhook endpoints

List webhook endpoints

GET
/v1/webhook_endpoints

Authorization

BearerAuth
AuthorizationBearer <token>

Use a secret API key as the bearer token. Keys are prefixed with vk_test_ (test mode) or vk_live_ (live mode).

In: header

Query Parameters

limit?integer

Number of items to return per page.

Default10
Range1 <= value <= 100
starting_after?string

Cursor for forward pagination. Returns items created after this ID.

Response Body

application/json

curl -X GET "http://localhost:3000/v1/webhook_endpoints"
{
  "object": "list",
  "url": "string",
  "has_more": true,
  "total_count": 0,
  "data": [
    {
      "id": "string",
      "object": "webhook_endpoint",
      "url": "string",
      "enabled_events": [
        "string"
      ],
      "status": "enabled",
      "api_version": "string",
      "description": "string",
      "metadata": {
        "property1": "string",
        "property2": "string"
      },
      "created": 0,
      "updated": 0,
      "secret": "string"
    }
  ]
}