Create Deployment
post/v1/deployments?beta=true
Headers
anthropic-versionstring
anthropic-betastring
Request body
Example request
{
"initial_events": [
{
"type": "user.message",
"content": [
{
"type": "text",
"text": "Where is my order #1234?"
}
]
}
],
"resources": [
{
"type": "github_repository",
"url": "https://github.com/example-org/example-repo",
"authorization_token": "ghp_exampletoken"
}
]
}Response
Successful response (OK)
Example response
{
"agent": {
"type": "agent",
"id": "agent_011CZkYqphY8vELVzwCUpqiQ",
"version": 1
},
"initial_events": [
{
"content": [
{
"type": "text",
"text": "Where is my order #1234?"
}
]
}
],
"resources": [
{
"checkout": {
"type": "branch",
"name": "main"
}
}
]
}