1

I have difficult to understand how webooks works. From documentation (https://quire.io/dev/api/#webhook) there is a section about Notification, and so:

"If the app wants to receive notifications of a specific projects or tasks, it can follow the projects or apps by sending a PUT request to the URL. To add a follower, the body of the request can be"

First question: Where should i send the put request?

What i want to do is to send task creation (and edit) on a specific nodejs server (listening over https). I have added my server url to "webhook" section in my app settings.

Second question: If above step is correct, what are the next steps?

Thansk, Nicola

1 Answers1

0

1) the PUT request is sent to the resource you want to follow:

e.g. to follow an existing task you have to update a task using the addFollowers parameter

Four your case you'd have to follow a Project and see filter the notifications are posted to your webhook endpoint. More detail was given in this duplicate question in github

2) next steps would be to implement your webhook endpoint and listen to notifications.

cor3000
  • 936
  • 1
  • 6
  • 16