Sends a user message to the VBAssist AI service and returns the generated response. Supports conversation tracking through agent_id and conversation_id parameters.
The request object containing the user's message and optional conversation tracking information.
Success - Returns the AI-generated response
Unauthorized
{- "message": "string",
- "agent_id": "string",
- "conversation_id": "string"
}
{- "data": "string",
- "error": {
- "detail": "string",
- "instance": "string",
- "status": 0,
- "title": "string",
- "type": "string"
}, - "debug": {
- "activityID": "string"
}
}
Records user feedback about a specific conversation with VBAssist, including a numerical rating (1-5) and textual comments. Requires conversation and agent identifiers.
The feedback details including rating, comments, and conversation identifiers.
Success - Feedback submitted successfully
Unauthorized
{- "agent_id": "string",
- "conversation_id": "string",
- "rating": 1,
- "feedback": "string"
}
{- "data": "string",
- "error": {
- "detail": "string",
- "instance": "string",
- "status": 0,
- "title": "string",
- "type": "string"
}, - "debug": {
- "activityID": "string"
}
}