Close icon used for modal or UI dismissal
Linear gradient light background

Chaser Incoming Webhooks


Incoming Webhook is an easy way to integrate Chaser with other Apps, such as Zappier or Lighty.ai to create tasks automatically.

Enable webhooks

Type

/chaser get-chaser-webhook-token

anywhere in Slack. The token provided can be used to authenticate requests made by other tools to create tasks in Chaser automatically: 

WebHook token example



Create tasks

by making an HTTP POST request:

curl -X POST https://slack.chaseforme.com/webhooks/tasks \
-H "Authorization: Bearer PLACE_API_TOKEN_HERE" \
-H "Content-Type: application/json" \
-d '[
 {
   "summary": "Complete the project plan",
   "assignee": "alex@example.com",
   "dueAt": "2025-01-31",
   "channel": "general"
 },
 {
   "summary": "Prepare budget report",
   "assignee": "richard@example.com",
   "dueAt": "2025-03-01"
 }
]'

Task from webhook example



Data Format

- summary is the only required field
- dueAt must be in the YYYY-MM-DD format
- assignee is identified by the email address
- you can create up to 50 tasks at a time
- if channel name is specified, the user must be a member to create tasks in it

Notification

You will be notified every time tasks are created on your behalf.
‍‍