Documentation

Build powerful task automation workflows through our platform's full capabilities. Everything you need to integrate Action Plan into your systems.

Getting Started

1. API Key Setup

curl -X POST "https://api.action-plan.com/v1/automations" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "tasks": [
      {"id": "task1", "action": "email_send", "params": {"to": "user@example.com"}},
      {"id": "task2", "action": "slack_notify", "params": {"channel": "#workflow-updates"}}
    ]
}'

Core Features

Realtime Triggers

Automate workflows instantly with our event-driven architecture that reacts to any change in your systems within milliseconds.

Advanced Scheduler

Create complex recurrence patterns with granular control over task timing and execution conditions.

Analytics Dashboard

Track workflow performance with detailed metrics and visual reports on task success rates and execution times.

API Endpoints

POST

/v1/automations

Create a new workflow with multiple task definitions and conditional logic.

Request Body:
{
  "tasks": [
    {"id": "string", "action": "string", "params": {}}
  ],
  "conditions": []
}
GET

/v1/executions

List all workflow execution instances with status tracking and results.

Query Parameters:
{
  "workflow_id": "string",
  "status": "string",
  "limit": 100
}