POST
/
v0
/
applications
curl --request POST \
  --url https://api.avidoai.com/v0/applications \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "title": "Customer Support Bot",
  "slug": "customer-support-bot",
  "description": "AI assistant for customer support inquiries",
  "context": "You are a helpful customer support assistant...",
  "type": "CHATBOT",
  "environment": "DEV"
}'
{
  "data": {
    "id": "new_app_id",
    "orgId": "org_123456",
    "title": "New AI Assistant",
    "slug": "new-ai-assistant",
    "description": "An AI assistant for advanced Q&A",
    "context": "Please answer user queries in a helpful manner",
    "type": "CHATBOT",
    "environment": "DEV",
    "createdAt": "2025-01-01T00:00:00.000Z",
    "modifiedAt": "2025-01-01T00:00:00.000Z",
    "monitoringEnabled": true
  }
}

Authorizations

x-api-key
string
header
required

Your unique Avido API key

Body

application/json

Request body for creating a new application

title
string
required

Title of the application

Minimum length: 1
Example:

"Customer Support Bot"

slug
string
required

URL-friendly slug for the application

Minimum length: 1
Example:

"customer-support-bot"

description
string
default:
required

Description of the application

Example:

"AI assistant for customer support inquiries"

context
string
default:
required

Context/instructions for the application

Example:

"You are a helpful customer support assistant..."

type
enum<string>
required

Type of the application

Available options:
CHATBOT,
AGENT
Example:

"CHATBOT"

environment
enum<string>
default:DEV
required

Environment of the application

Available options:
DEV,
PROD
Example:

"DEV"

Response

201
application/json
Successfully created application

Successful response containing the application data

data
object
required

Application configuration and metadata