API Documentation
Authorization
Agents
Phone Numbers
SIP
Messaging
Webhooks
Knowledge
Accounts
- POSTCreate a new reseller
- GETList resellers
- POSTCreate a new organization
- DELDelete an organization
- GETList organizations
- GETList agent accounts
- POSTCreate a new account
- DELDelete an account
- GETList admin users
- DELDelete admin user
- POSTInvite admin user
- GETFetch Account by externalAccountId
- POSTUpdate Organization Settings
Billing
Messaging
Fetch Conversation
Fetch specific conversation logs for a given room ID and UUID
GET
/
api
/
v2
/
conversation
/
{roomId}
/
{uuid}
Copy
Ask AI
curl --request GET \
--url https://api.vida.dev/api/v2/conversation/{roomId}/{uuid}
Copy
Ask AI
[
{
"success": "true",
"message": "Success",
"conversation": [
{
"message": "Hello World",
"timestamp": 1630480000
}
]
}
]
Authorizations
Vida API Token
Path Parameters
Room Id of the conversation
UUID of the conversation
Response
200 - application/json
Successful response
The response is of type object[]
.
Copy
Ask AI
curl --request GET \
--url https://api.vida.dev/api/v2/conversation/{roomId}/{uuid}
Copy
Ask AI
[
{
"success": "true",
"message": "Success",
"conversation": [
{
"message": "Hello World",
"timestamp": 1630480000
}
]
}
]
Assistant
Responses are generated using AI and may contain mistakes.