Applications
Create a new application
Creates a new application configuration.
POST
/
v0
/
applications
Copy
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"
}'
Copy
{
"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
Your unique Avido API key
Body
application/json
Request body for creating a new application
Response
201
application/json
Successfully created application
Successful response containing the application data
Copy
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"
}'
Copy
{
"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
}
}
Assistant
Responses are generated using AI and may contain mistakes.