curl --request POST \
--url https://api.klavis.ai/sandbox/github/{sandbox_id}/initialize \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"repos": [
{
"name": "<string>",
"description": "<string>",
"branches": [
{
"name": "<string>",
"folders": {
"name": "<string>",
"path": "<string>",
"files": [
{
"name": "<string>",
"path": "<string>",
"content": "<string>"
}
],
"folders": [
"<unknown>"
]
}
}
],
"prs": [
{
"title": "<string>",
"head": "<string>",
"id": 123,
"body": "<string>",
"state": "open",
"base": "main",
"labels": [
"<string>"
]
}
],
"issues": [
{
"title": "<string>",
"id": 123,
"body": "<string>",
"state": "open",
"labels": [
"<string>"
]
}
]
}
]
}
'