curl --request POST \
--url https://backend.revyl.ai/api/v1/execution/tests/bulk_execute \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"test_ids": [
"<string>"
],
"run_config": {
"llm_config": {
"primary_model": "gemini/gemini-3-flash-preview",
"reflection_model": "gemini/gemini-3-flash-preview",
"planning_model": "gemini/gemini-3-flash-preview"
},
"execution_mode": {
"human_in_the_loop": false,
"enable_reflection": true,
"enable_planning": false,
"retries": 1,
"reflection_retries": 1,
"skip_app_install": false,
"grounder_type": "moondream3"
},
"run_id": "<string>",
"cache_retry_mode": "full_rerun",
"fallback_trigger": "final_fail",
"disable_grid": true
}
}
'