# KlaviyoAPI::WebhookCreateQueryResourceObjectAttributes ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **name** | **String** | A name for the webhook. | | | **description** | **String** | A description for the webhook. | [optional] | | **endpoint_url** | **String** | A url to send webhook calls to. Must be https. | | | **secret_key** | **String** | A secret key, that will be used for webhook request signing. | | ## Example ```ruby require 'klaviyo-api-sdk' instance = KlaviyoAPI::WebhookCreateQueryResourceObjectAttributes.new( name: My Webhook, description: A webhook for sms events, endpoint_url: https://www.example.com/example/path, secret_key: INSERT_SECRET_KEY ) ```