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
Create Named Version
Snapshot the current staging or default agent and store it under a custom title.
POST
/
api
/
v2
/
agent
/
{agentId}
/
versions
Copy
Ask AI
curl --request POST \
--url https://api.vida.dev/api/v2/agent/{agentId}/versions \
--header 'Content-Type: application/json' \
--data '{
"title": "Holiday-2025",
"source": "staging"
}'
Copy
Ask AI
{
"success": true,
"createdVersion": {
"title": "Holiday-2025",
"versionId": 1750195000123
}
}
Authorizations
Vida API Token
Path Parameters
Agent Id to snapshot
Body
application/json
Response
201 - application/json
Snapshot stored
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://api.vida.dev/api/v2/agent/{agentId}/versions \
--header 'Content-Type: application/json' \
--data '{
"title": "Holiday-2025",
"source": "staging"
}'
Copy
Ask AI
{
"success": true,
"createdVersion": {
"title": "Holiday-2025",
"versionId": 1750195000123
}
}
Assistant
Responses are generated using AI and may contain mistakes.