Clone an agent
Copy an agent — including its prompts — into a new DRAFT agent.
Copy an agent — including its prompts — into a new DRAFT agent.
The copy gets a new agent_id and its own prompt record. If you do not
supply a display_name, the copy is named "<source name> - variant".
Three things that surprise people, all deliberate:
- The clone comes back at version 2, not 1. Its conversation controls can only be applied by a second write, which increments the version.
status, inbound source configuration and follow-up settings are not copied. The copy always starts as a DRAFT.cloned_fromis added by this API from the request path; the underlying agent record has no such field.
An oversized prompt (over 380,000 UTF-8 bytes) makes the source agent unclonable and this returns 422.
Rate limit: 1000 requests per minute per organization (bucket default). Exceeding it returns 429 with Retry-After; the X-RateLimit-* response headers report your remaining allowance on every call.
v2/agents/{agent_id}/cloneAuthorization
AuthorizationRequiredBearer <token>
Your Graine API key. Create one in the dashboard under Developers, or via POST /v2/api-keys. Send it as Authorization: Bearer <key>.
In: header
Request Body
application/jsonOptionaldisplay_nameDisplay Name | null
Name for the copy. Defaults to ' - variant'.
1Maximum length: 100summarySummary | null
Note for the copy.
2000Path Parameters
agent_idRequiredAgent Id
Agent to copy.
Query Parameters
organization_idOrganization Id
Must match the organisation the API key belongs to.
Response Body
201
The new agent, including the id it was copied from.
agent_idRequiredAgent Id
Stable identifier for this agent. Use it everywhere else in the API.
org_idOrg Id | null
The organisation this agent belongs to. Always the organisation your API key belongs to.
display_nameDisplay Name | null
The agent's name, as it appears in the dashboard.
summarySummary | null
A short note about what this agent is for. Yours to write; never shown to a caller.
greeting_messageGreeting Message | null
The first line the agent speaks. May contain {variables}.
statusStatus | null
DRAFT | ACTIVE | INACTIVE | ARCHIVED. An agent must be ACTIVE to place calls, and INACTIVE to be edited or archived.
categoryCategory | null
What kind of work this agent does. Yours to choose; it groups agents in the dashboard and changes nothing at call time.
versionVersion
Incremented on every successful update. Read it back after a write to confirm the change landed.
1timestampsTimestamps
When this agent was created and last changed.
labelsLabels
Free-form labels for your own filtering.
promptsPrompts
The agent's instructions. Empty on a list row — prompts are not fetched while listing.
variablesVariables
Placeholders the greeting and prompts may use.
analyticsAnalytics
What is extracted from every call, beyond the summary.
integrationsIntegrations
Where this agent is wired up: a status callback under webhook, browser calling under webcall, connected tools under mcp. Only what is configured appears.
knowledge_baseKnowledge Base
The knowledge base this agent answers from. Null when none is attached, and null on a list row — it is not fetched while listing.
conversation_configConversation Config | null
A flat view of the ten most-changed controls from the policy buckets below — the same values, not a second set. Change either.
configurationConfiguration
How this agent runs a call.
settingsSettings
Agent-wide switches.
follow_up_configFollow Up Config
What happens after a call, when a follow-up is warranted.
multilingualMultilingual | null
Per-language voices and prompts, when the agent switches language mid-call. Null when it speaks one language.
calling_guardCalling Guard | null
The hours this agent may ring people, or null when it may call at any time. Applies to POST /v2/calls only — a call outside the window is rescheduled for the next opening rather than refused.
dropped_languagesDropped Languages | null
Returned after an update that sent a language which could not be saved — usually a missing voice. Those languages were not stored.
cloned_fromRequiredCloned From
The agent this copy was made from, echoed from the request path.
400
1000 — malformed or contradictory input. 1002 — a required parameter is missing.
errorRequiredError
Stable integer code from the /v2 error table. Branch on this.
messageRequiredMessage
One human-readable sentence. Wording may change; the code will not.
401
1100 — missing, unknown or inactive API key. 1101 — a browser session token was presented instead of an API key.
errorRequiredError
Stable integer code from the /v2 error table. Branch on this.
messageRequiredMessage
One human-readable sentence. Wording may change; the code will not.
403
1102 — the key is valid but lacks the scope this endpoint requires, or names another organization. GET /v2/scopes reports what a key holds.
errorRequiredError
Stable integer code from the /v2 error table. Branch on this.
messageRequiredMessage
One human-readable sentence. Wording may change; the code will not.
404
1200 — no such resource in your organization. A resource belonging to another organization answers 404, never 403.
errorRequiredError
Stable integer code from the /v2 error table. Branch on this.
messageRequiredMessage
One human-readable sentence. Wording may change; the code will not.
422
1001 — the body or query failed validation; the message names the first offending field.
errorRequiredinteger
Stable integer code from the error table. Branch on this, not on the message.
messageRequiredstring
One human-readable sentence. Wording may change; the code will not.
429
1300 — the per-organization request rate or concurrent-call limit was reached. Carries Retry-After.
errorRequiredError
Stable integer code from the /v2 error table. Branch on this.
messageRequiredMessage
One human-readable sentence. Wording may change; the code will not.
503
1501 — a service this endpoint depends on is unreachable or returned a 5xx.
errorRequiredError
Stable integer code from the /v2 error table. Branch on this.
messageRequiredMessage
One human-readable sentence. Wording may change; the code will not.
504
1502 — a service this endpoint depends on did not answer in time.
errorRequiredError
Stable integer code from the /v2 error table. Branch on this.
messageRequiredMessage
One human-readable sentence. Wording may change; the code will not.
The new agent, including the id it was copied from.

