curl --request POST \
--url https://api.klavis.ai/sandbox/microsoft_teams/{sandbox_id}/initialize \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"team_channels": [
{
"name": "Engineering",
"channel_description": "Channel for engineering team discussions",
"channel_messages": [
{
"content": "Welcome to the Engineering channel! This is where we discuss technical topics and share updates."
},
{
"content": "Reminder: Code review sessions every Tuesday at 10 AM"
},
{
"content": "New deployment pipeline is ready for testing. Please check the documentation in our wiki."
}
]
},
{
"name": "Marketing",
"channel_description": "Channel for marketing campaigns and strategies",
"channel_messages": [
{
"content": "Q4 campaign planning meeting scheduled for next week"
},
{
"content": "Great job on the recent product launch! The social media engagement exceeded our targets by 40%"
}
]
},
{
"name": "Project Alpha",
"channel_description": "Dedicated channel for Project Alpha collaboration",
"channel_messages": [
{
"content": "Project kickoff meeting notes: https://docs.example.com/project-alpha/kickoff"
},
{
"content": "Phase 1 milestone completed! Moving to Phase 2 next sprint."
},
{
"content": "Updated timeline shared in the files tab. Please review and provide feedback by EOW."
}
]
}
],
"team_chats": []
}
'