curl --request POST \
--url https://api.klavis.ai/sandbox/clickup/{sandbox_id}/initialize \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"spaces": [
{
"name": "<string>",
"folders": [
{
"name": "<string>",
"lists": [
{
"name": "<string>",
"content": "<string>",
"tasks": [
{
"name": "<string>",
"description": "<string>",
"priority": 123,
"comments": [
{
"comment_text": "<string>"
}
]
}
]
}
]
}
],
"lists": [
{
"name": "<string>",
"content": "<string>",
"tasks": [
{
"name": "<string>",
"description": "<string>",
"priority": 123,
"comments": [
{
"comment_text": "<string>"
}
]
}
]
}
]
}
]
}
'