Create Webhook Header
Creates a new Webhook Header.
Path parameters
webhook_idinteger · int32Required
Header parameters
X-Violet-TokenstringRequired
X-Violet-App-SecretstringRequired
X-Violet-App-Idinteger · int32Required
Body
Webhook Header
idinteger · int32Read-onlyOptional
app_idinteger · int32Optional
App ID
webhook_idinteger · int32Optional
ID of the webhook the header belongs to
keystringOptional
Header Key
valuestringOptional
Header Value
date_createdstring · date-timeRead-onlyOptional
Date of creation
date_last_modifiedstring · date-timeRead-onlyOptional
Date of last update
Responses
default
default response
application/json
post
POST /v1/events/webhooks/{webhook_id}/headers HTTP/1.1
Host: sandbox-api.violet.io
X-Violet-Token: text
X-Violet-App-Secret: text
X-Violet-App-Id: 1
Content-Type: application/json
Accept: */*
Content-Length: 55
{
"app_id": 1,
"webhook_id": 1,
"key": "text",
"value": "text"
}
default
default response
{
"id": 1,
"app_id": 1,
"webhook_id": 1,
"key": "text",
"value": "text",
"date_created": "2025-07-10T06:04:39.054Z",
"date_last_modified": "2025-07-10T06:04:39.054Z"
}
Last updated
Was this helpful?