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
Agents
Rename Stored Version
Overwrite only the human-readable title of a stored snapshot.
PUT
/
api
/
v2
/
agent
/
{agentId}
/
versions
/
{versionId}
/
title
Copy
Ask AI
curl --request PUT \
--url https://api.vida.dev/api/v2/agent/{agentId}/versions/{versionId}/title \
--header 'Content-Type: application/json' \
--data '{
"title": "Holiday-2025"
}'
Copy
Ask AI
{
"success": true,
"versionId": 1750195000123,
"newTitle": "Holiday-2025"
}
Authorizations
Vida API Token
Body
application/json
Response
200 - application/json
Title updated
The response is of type object
.
Copy
Ask AI
curl --request PUT \
--url https://api.vida.dev/api/v2/agent/{agentId}/versions/{versionId}/title \
--header 'Content-Type: application/json' \
--data '{
"title": "Holiday-2025"
}'
Copy
Ask AI
{
"success": true,
"versionId": 1750195000123,
"newTitle": "Holiday-2025"
}
Assistant
Responses are generated using AI and may contain mistakes.