Free 14-day trial. No credit card. Cancel anytime.
Incoming Webhook is an easy way to integrate Chaser with other Apps, such as Zapier or Make to create tasks automatically.
1. Enable webhooks for your team
Type /chaser get-chaser-webhook-token anywhere in Slack. Chaser will provide a taken you can use to create tasks in Chaser via webhook:
2. Create tasks via Webhook
Note: If you're using Zapier, you can do this with a Webhook step - just be sure to set the Payload Type to "JSON".
Create a task 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-23",
"channel": "general"
},
{
"summary": "Prepare budget report",
"assignee": "richard@example.com",
"dueAt": "2025-03-19"
}
]'
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
NOTE: Chaser will notify when tasks are created through your webhook token.