elevenlabs · Schema
CreateAgentRequest
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Display name for the agent. |
| conversation_config | object | |
| metadata | object | Additional metadata for the agent. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateAgentRequest",
"title": "CreateAgentRequest",
"type": "object",
"required": [
"conversation_config"
],
"properties": {
"name": {
"type": "string",
"description": "Display name for the agent."
},
"conversation_config": {
"$ref": "#/components/schemas/ConversationConfig"
},
"metadata": {
"type": "object",
"description": "Additional metadata for the agent.",
"additionalProperties": {
"type": "string"
}
}
}
}