APIs for VBASoftware
VBASoftware (v1)
- application/json
- text/json
- application/*+json
The request object containing the user's message and optional conversation tracking information.
The message text entered by the user to be processed by the AI. Contains the question, statement, or request that requires a response.
The unique identifier for the AI agent handling this conversation. Used for tracking which AI model or version processed the request. If not provided, the system will use a default agent ID.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/chat/inquiry
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://vbapi.vbasoftware.com/vbasoftware/chat/inquiry \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"message": "string",
"agent_id": "string",
"conversation_id": "string"
}'No response example- application/json
- text/json
- application/*+json
The feedback details including rating, comments, and conversation identifiers.
The unique identifier of the AI agent that handled the conversation. This is required to track which agent received the feedback.
The unique identifier of the conversation for which feedback is being provided. This links the feedback to a specific chat interaction in the system.
Numeric rating given to the conversation quality. Typically represents user satisfaction level with the AI response. Must be a value between 1 and 5, where 1 is lowest satisfaction and 5 is highest.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/chat/feedback
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://vbapi.vbasoftware.com/vbasoftware/chat/feedback \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"agent_id": "string",
"conversation_id": "string",
"rating": 1,
"feedback": "string"
}'No response example