Update a webhook
Update a webhookPath parameters
id
string
ID of the webhook to update
Query
version
string
API version
Request body
url
string
URL for the webhookwebsite_id
string
Website IDversion
string
API version (e.g., v1.0)
Response
webhook_id
string
Webhook IDurl
string
URL for the webhookwebsite
string
Website namewebsite_id
string
Website IDversion
string
API versionenabled
boolean
Webhook enabled statuscreated_date
integer
Unix timestamp for creation datecreated_by
string
Creator of the webhook
1 curl --request PUT \2 --url https://api.livesession.io/v1/webhooks/id \3 --header 'accept: application/json' \4 --header 'content-type: application/json' \5 --data '6 {7 "url": "string",8 "website_id": "string",9 "version": "string"10 }11 '
1 {2 "webhook_id": "string",3 "url": "string",4 "website": "string",5 "website_id": "string",6 "version": "string",7 "enabled": true,8 "created_date": 0,9 "created_by": "string"10 }