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
Name | Type | Description |
---|---|---|
url (required) | string | Callback url |
event (required) | string | Event type |
Event Types
Name | Type |
---|---|
New Project | project.created |
Update Project | project.updated |
Delete Project | project.deleted |
New Task | task.created |
Update Task | task.updated |
Delete Task | task.deleted |
New Comment | comment.created |
Delete Comment | comment.deleted |
Response sample
Fields
Name | Type | Description |
---|---|---|
id | integer | Webhook 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>