I’m trying to set up a webhook to fire from Guru every time a card with tagId=1234 is updated. I can’t quite figure out the format for the “filter” property in the body of my JSON payload.
I see the simple example here, but I can’t find a list of what event types are available to provide as parameters.
The payload I’m working with is:
{
"deliveryMode":"SINGLE",
"targetUrl":"https://myURL.com",
"status":"ENABLED",
"filter":"card-updated, tag-1234-567-890 exists"
}
which of course is not working. It returns:
{
"description" : "Webhook filter contains unknown events"
}
Any help here would be appreciated. Thanks!