# Create a webhook configuration

Endpoint: POST /api/v2/webhooks
Version: 2.0.0

## Request fields (application/json):

  - `url` (string, required)
    Endpoint to which the webhook will be sent.
    Example: "https://your-api.com/webhooks"

## Response 201 fields (application/json):

  - `id` (integer, required)
    Identifier of the webhook configuration.
    Example: 1

  - `url` (string, required)
    URL registered for the webhook.
    Example: "https://your-api.com/webhooks"

  - `secret` (string, required)
    Secret key used for signing (e.g., in the X-Signature header).
    Example: "6e5a9465cb8e117cfe63473ba7310ec96898db7c893a967b35cf58d669e47337"


