curl --request POST \
--url https://api.devin.ai/v2/enterprise/organizations/{org_id}/clone \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"repo": "<string>",
"setup_steps": {
"_RepoSetupStepsT__setup_steps_format_version": "<string>",
"repo_note": "<string>",
"repo_commands": [
{
"commands": [
"<string>"
],
"project_path": "<string>",
"status": "verified",
"type": "pull_repo",
"default_branch": "<string>",
"description": "<string>",
"locked": true,
"repo_path": "<string>"
}
],
"repo_projects": [
{
"path": "<string>"
}
]
},
"startup_commands": [
"<string>"
]
}
'