curl --location -g --request POST 'https://api-dev.commandroom.ai/api/tasks?tenant=' \
--header 'X-Tenant-Uuid: ' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "{{task_title}}",
"overview": "{{task_overview}}",
"description": "{{task_description}}",
"status": "todo",
"priority": "high",
"objective": "{{task_objective}}",
"key_result": "{{task_key_result}}",
"build_requirements": "{{build_requirements}}",
"project_id": ,
"sort": 0,
"stage": null,
"data": {
"ai_automation_type": "full_automation",
"prd_data": {{prd_data}},
"build_steps_data": {{build_steps_data}},
"implementation_steps_data": {{implementation_steps_data}}
},
"added_to_project_at": "{{$isoTimestamp}}"
}'