Triggering from the API
GraphQL — quick example
curl -X POST $PARADIME_API_ENDPOINT \
-H "X-API-KEY: $PARADIME_API_KEY" \
-H "X-API-SECRET: $PARADIME_API_SECRET" \
-H "Content-Type: application/json" \
-d '{
"query": "mutation Trigger($agent: String, $message: String) { triggerDinoaiAgentRun(agent: $agent, message: $message) { ok agentSessionId status } }",
"variables": {"agent": "data-quality-checker", "message": "Focus on stg_orders"}
}'Python SDK — quick example
Related
Last updated
Was this helpful?