humanIntervention
Ejecuta el workflow humanInterventionWorkflow en Temporal
POST
/api/workflow/humanInterventionBody Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
site_id | string | Yes | - |
user_id | string | Yes | - |
intervention_type | string | Yes | - |
entity_id | string | Yes | - |
entity_type | string | Yes | - |
priority | `‘low' | 'medium' | 'high' |
description | string | Yes | - |
metadata | Record<string, any> | Yes | - |
Example Request
curl -X POST "https://api.makinari.com/api/workflow/humanIntervention" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"site_id": "value",
"user_id": "value",
"intervention_type": "value",
"entity_id": "value",
"entity_type": "value",
"priority": "value",
"description": "value",
"metadata": {}
}'Last updated on