curl -X POST https://api.usenaive.ai/v1/companies/:companyId/ceo/team/approve \
-H "Authorization: Bearer nv_sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"team": [
{ "name": "Jordan Kim", "title": "Lead Engineer", "template": "engineer", "skills": ["typescript", "react"] },
{ "name": "Alex Rivera", "title": "Content Marketer", "template": "writer", "skills": ["seo", "copywriting"] }
],
"tasks": [
{ "title": "Build landing page", "description": "Create responsive landing page with hero section", "assignee": "Jordan Kim", "priority": "high" },
{ "title": "Write blog posts", "description": "Draft 3 launch posts", "assignee": "Alex Rivera", "priority": "medium" }
],
"objective_id": "obj-abc-123"
}'