curl --request POST \
--url https://api.klavis.ai/sandbox/asana/{sandbox_id}/initialize \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data @- <<EOF
{
"projects": [
{
"name": "Website Redesign Project",
"description": "Complete redesign of company website with modern UI/UX",
"tasks": [
{
"name": "Design homepage mockups",
"description": "Create initial design mockups for the new homepage layout",
"due_date": "2025-12-15",
"completed": false,
"stories": [
{
"text": "Let's prioritize the mobile-first design approach for this mockup"
}
]
},
{
"name": "Fix navigation menu bug",
"description": "Navigation menu not working properly on mobile devices",
"due_date": "2025-12-03",
"completed": false,
"stories": [
{
"text": "This bug is blocking the mobile release, marking as urgent"
}
]
}
]
},
{
"name": "Mobile App Development",
"description": "iOS and Android app development for customer portal",
"tasks": [
{
"name": "Set up development environment",
"description": "Configure local development environment for mobile app",
"due_date": "2025-12-05",
"completed": false,
"stories": [
{
"text": "We should ensure the development environment uses the latest stable versions"
}
]
},
{
"name": "Write API documentation",
"description": "Document all REST API endpoints for the mobile app",
"due_date": "2025-12-20",
"completed": false,
"stories": [
{
"text": "Include code examples for each API endpoint to help developers"
}
]
},
{
"name": "Implement user authentication",
"description": "Add OAuth2 authentication flow to mobile app",
"due_date": "2025-12-22",
"completed": false
}
]
},
{
"name": "Marketing Campaign Q4",
"description": "Q4 marketing initiatives and campaign planning",
"tasks": [
{
"name": "Create social media content calendar",
"description": "Plan and schedule social media posts for Q4 campaign",
"due_date": "2025-12-10",
"completed": false,
"stories": [
{
"text": "Don't forget to coordinate with the content team for approval"
}
]
},
{
"name": "Review competitor analysis",
"description": "Analyze competitor offerings and positioning",
"due_date": "2025-12-08",
"completed": false,
"stories": [
{
"text": "This is critical for our competitive positioning"
}
]
},
{
"name": "Update brand guidelines",
"description": "Refresh brand guidelines to reflect new visual identity",
"due_date": "2025-12-12",
"completed": false,
"stories": [
{
"text": "The new guidelines should include updated logo usage rules"
}
]
}
]
},
{
"name": "Product Launch 2025",
"description": "New product launch preparation and coordination",
"tasks": [
{
"name": "Conduct user testing sessions",
"description": "Schedule and conduct user testing for new features",
"due_date": "2025-12-18",
"completed": false,
"stories": [
{
"text": "We need at least 10 participants for meaningful user testing results"
}
]
},
{
"name": "Prepare product demo presentation",
"description": "Create compelling demo presentation for stakeholders",
"due_date": "2025-12-25",
"completed": false
}
]
}
]
}
EOF{
"sandbox_id": "<string>",
"status": "idle",
"message": "<string>",
"records_created": {}
}Initialize the sandbox with asana-specific data following the defined schema.
curl --request POST \
--url https://api.klavis.ai/sandbox/asana/{sandbox_id}/initialize \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data @- <<EOF
{
"projects": [
{
"name": "Website Redesign Project",
"description": "Complete redesign of company website with modern UI/UX",
"tasks": [
{
"name": "Design homepage mockups",
"description": "Create initial design mockups for the new homepage layout",
"due_date": "2025-12-15",
"completed": false,
"stories": [
{
"text": "Let's prioritize the mobile-first design approach for this mockup"
}
]
},
{
"name": "Fix navigation menu bug",
"description": "Navigation menu not working properly on mobile devices",
"due_date": "2025-12-03",
"completed": false,
"stories": [
{
"text": "This bug is blocking the mobile release, marking as urgent"
}
]
}
]
},
{
"name": "Mobile App Development",
"description": "iOS and Android app development for customer portal",
"tasks": [
{
"name": "Set up development environment",
"description": "Configure local development environment for mobile app",
"due_date": "2025-12-05",
"completed": false,
"stories": [
{
"text": "We should ensure the development environment uses the latest stable versions"
}
]
},
{
"name": "Write API documentation",
"description": "Document all REST API endpoints for the mobile app",
"due_date": "2025-12-20",
"completed": false,
"stories": [
{
"text": "Include code examples for each API endpoint to help developers"
}
]
},
{
"name": "Implement user authentication",
"description": "Add OAuth2 authentication flow to mobile app",
"due_date": "2025-12-22",
"completed": false
}
]
},
{
"name": "Marketing Campaign Q4",
"description": "Q4 marketing initiatives and campaign planning",
"tasks": [
{
"name": "Create social media content calendar",
"description": "Plan and schedule social media posts for Q4 campaign",
"due_date": "2025-12-10",
"completed": false,
"stories": [
{
"text": "Don't forget to coordinate with the content team for approval"
}
]
},
{
"name": "Review competitor analysis",
"description": "Analyze competitor offerings and positioning",
"due_date": "2025-12-08",
"completed": false,
"stories": [
{
"text": "This is critical for our competitive positioning"
}
]
},
{
"name": "Update brand guidelines",
"description": "Refresh brand guidelines to reflect new visual identity",
"due_date": "2025-12-12",
"completed": false,
"stories": [
{
"text": "The new guidelines should include updated logo usage rules"
}
]
}
]
},
{
"name": "Product Launch 2025",
"description": "New product launch preparation and coordination",
"tasks": [
{
"name": "Conduct user testing sessions",
"description": "Schedule and conduct user testing for new features",
"due_date": "2025-12-18",
"completed": false,
"stories": [
{
"text": "We need at least 10 participants for meaningful user testing results"
}
]
},
{
"name": "Prepare product demo presentation",
"description": "Create compelling demo presentation for stakeholders",
"due_date": "2025-12-25",
"completed": false
}
]
}
]
}
EOF{
"sandbox_id": "<string>",
"status": "idle",
"message": "<string>",
"records_created": {}
}Your Klavis AI API key.
The unique sandbox identifier
If true, use default test data for initialization
Complete Asana sandbox data structure.
Nested hierarchy for initialization:
List of projects with nested tasks and stories
Show child attributes
Successful Response
Response model for sandbox initialization