Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.spojit.com/llms.txt

Use this file to discover all available pages before exploring further.

Once you’ve built and saved a workflow, there are several ways to run it.

Manual execution

Click the Run button in the workflow editor toolbar. The workflow executes immediately and you can watch each node light up as it processes.

Scheduled execution

Set a trigger type of Schedule to run the workflow automatically on a recurring basis.
ScheduleCron expression
Every hour0 * * * *
Daily at 9 AM UTC0 9 * * *
Every Monday at 8 AM0 8 * * 1
First of every month0 0 1 * *
Configure the schedule in the Trigger node.

Webhook execution

Set a trigger type of Webhook to run the workflow when an external HTTP request arrives.
1

Select webhook trigger

In the Trigger node, choose Webhook as the trigger type. A unique URL is generated for this workflow.
2

Copy the webhook URL

Copy the URL from the trigger configuration and use it in your external service.
3

Send a request

Send an HTTP POST request to the webhook URL. The request body is available as the trigger output.
curl -X POST https://app.spojit.com/webhook/abc123 \
  -H "Content-Type: application/json" \
  -d '{"orderId": "12345"}'

Execution status

Each workflow run has a status:
StatusDescription
RunningThe workflow is currently executing
CompletedAll nodes finished successfully
FailedA node encountered an error
WaitingPaused at a Human approval node
Timed OutExecution exceeded the time limit

Viewing results

After a run completes, you can:
  • See the output of each node by clicking on it
  • View the full execution timeline in the Monitoring page
  • Check error details for any failed nodes