Get visibility into your backend tasks, workflows and queues.
Insight - Automation - Metrics
Watch how easy it is to get started with the Task Badger
Our simple API makes it easy to get the most out of your workloads.
AUTH_TOKEN="NF2x69rd.nrakZMCJnRuBac7BR7m5atDkRdx0WS1d"
# Create a task with custom data
# and an email notification
$ curl -X POST \
'https://taskbadger.net/api/demo_org/project_a/tasks/' \
-H "Authorization: Bearer ${AUTH_TOKEN}" \
-H "Content-Type: application/json" \
-d '{
"name": "demo task",
"data": {"customKey": "customValue"},
"actions": [
{
"integration": "email",
"trigger": "success,error",
"config": {"to": "user@example.com"}
}
]
}'