Skip to main content
POST
/
api
/
agents
Create Agent
curl --request POST \
  --url https://api-in.getello.ai/api/agents \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{}'
{
  "status": 200,
  "message": "agent created successfully",
  "data": {
    "_id": "69cf98f0643b415327cab0af",
    "workspaceId": "6970c2f3948cfbce1932d99d",
    "userId": "6970c2f3948cfbce1932d99c",
    "name": "My Hybrid Agent",
    "type": "hybrid"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs-in.getello.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Body

application/json
type
enum<string>
required
Available options:
inbound,
outbound,
chat,
hybrid
Example:

"hybrid"

workspaceId
string
Example:

"6970c2f3948cfbce1932d99d"

templateId
string
Example:

"69cf92ec643b415327cab0ae"

timezone
string
Example:

"Asia/Kolkata"

dynamic_variables
string[]
Example:
["customer_name", "order_id"]
metaData
object

Response

Agent created successfully

status
integer
Example:

200

message
string
Example:

"agent created successfully"

data
object
Example:
{
"_id": "69cf98f0643b415327cab0af",
"workspaceId": "6970c2f3948cfbce1932d99d",
"userId": "6970c2f3948cfbce1932d99c",
"name": "My Hybrid Agent",
"type": "hybrid"
}