v1
latestOpenAPI 3.0.02026-07-26492143.5 KBAgents
Create agent
Create a new agent. The authenticated caller must have permission to create agents on the target team.
post/agents
Request body
Example request
{
"name": "Sales research agent",
"model_name": "anthropic/claude-sonnet-4",
"description": "Researches accounts and drafts outreach",
"system_prompt": "You are a B2B sales research assistant.",
"skill_ids": [
"skill_2b9c",
"skill_7f1a"
],
"folder_id": "folder_91ab",
"team_id": "team_4f8c92ab"
}Response
Agent created.
Example response
{
"agent": {
"id": "abc123DEFghiJKL",
"name": "Sales research agent",
"description": "Researches accounts and drafts outreach",
"team_id": "team_4f8c92ab",
"is_active": true,
"model_name": "anthropic/claude-sonnet-4",
"system_prompt": "You are a B2B sales research assistant.",
"skill_ids": [
"skill_2b9c",
"skill_7f1a"
],
"folder_id": "folder_91ab",
"created_at": "2026-05-15T14:32:00Z"
}
}