Webhooks with GET requests

From Planfix
Revision as of 12:37, 15 September 2022 by Aliona (talk | contribs)
Jump to: navigation, search

In order to understand how webhooks with GET requests work, let's put together a link that will create new tasks in Planfix.


Sample webhook:

https:///your_account.planfix.ru/webhook/get/create_task?project=project&name=taskname


  • The first step is to select the type of request that will be used in the link. Let's specify a GET request:

FXXjR4.png


  • Webhook links contain a unique code, but we can replace it as needed with something more informative:

GXCOlX.png


  • In the next step, we add parameters to the webhook. These parameters will store the values that are sent to Planfix. In the example, we're sending the project and task names:

uSATK9.png


  • We specify the name of the person to whom the action will be attributed in Planfix after the webhook has been triggered:

UxBrDw.png


  • We select the type of operation and configure it. When this is all complete and the webhook is triggered, Planfix will create a task using the template selected, name the project based on the project parameter in the link, and name the task based on the name parameter in the link. Then the following assignee will be added to the task:

zciFyE.png


  • Next we can add additional operations as needed:

MmTOHu.png


  • In the last step, we specify what response we want to receive from the webhook: JSON, transition to Planfix, or transition to your site:

Rmup3D.png


Now this webhook can be used to quickly and easily create new tasks in the desired project, straight from the browser address bar:

  • Copy the link and paste it in the address bar:
https://your_account.planfix.ru/webhook/get/create_task?project=specify&name=specify


  • Then insert the desired values and follow the link:
https://your_account.planfix.ru/webhook/get/create_task?project=SEO&name=onboarding


  • This creates a new Planfix task:

EsW6io.png


Important

Variables can and should be used to automate how values are added to parameters in webhook links.


Go To