REST Hooks

2 min
Jun 19, 2023

Subscribe to event

To subscribe to an event in Webvizio, you need to send a POST request to the following address: https://app.webvizio.com/api/v1/webhook

Please ensure that you include the personal access token in the request header. This token is essential for authorization and allows you to successfully subscribe to the desired event in Webvizio. 

Authorization: Bearer <token>

Request sample

Fields

NameTypeDescription
url (required)stringCallback url
event (required)stringEvent type


Event Types

NameType
New Projectproject.created
Update Projectproject.updated
Delete Projectproject.deleted
New Tasktask.created
Update Tasktask.updated
Delete Tasktask.deleted
New Commentcomment.created
Delete Commentcomment.deleted

Response sample

Fields

NameTypeDescription
idintegerWebhook id

Unsubscribe

To unsubscribe from an event in Webvizio, you need to send a DELETE request to the following address: https://app.webvizio.com/api/v1/webhook/{id} – where {id} represents the webhook identifier obtained in the response when subscribing to the event.

Make sure to include the personal access token in the request header. This token is necessary for the authorization and allows you to successfully unsubscribe from the specific event in Webvizio. 


Authorization: Bearer <token>