Available Actions
startsignalqueryterminate
Input Schema
{
"type": "object",
"required": [
"workflow_id",
"task_queue"
],
"properties": {
"args": {
"type": "array"
},
"task_queue": {
"type": "string"
},
"workflow_id": {
"type": "string"
}
}
}Output Schema
{
"type": "object",
"properties": {
"run_id": {
"type": "string"
},
"workflow_id": {
"type": "string"
}
}
}Quick Start
API Endpoint
POST /api/execute/temporalcURL Example
curl -X POST \
https://api.nulayers.com/execute/temporal \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"action": "start"}'