For the complete documentation index, see llms.txt. This page is also available as Markdown.

Inbound Webhooks

Inbound webhooks are a way to allow external services to send data into Taskade

Taskade can receive data sent to the Webhook URL through parameters. The parameters all have a String type format. They can then be utilised in other actions within the flow. Note that the parameter does not support space characters, for example the following is invalid:

{
 "The Name": "John"
}

An example of the following WebHook Trigger and its associated data is shown here:

{
    "Name": "John",
    "Title": "CEO of Taskade"
}

Setting up an inbound webhook involves setting up an automation flow. Learn more in the Taskade Automation guide.

Last updated

Was this helpful?