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
Replace Stored Version
Overwrite an existing version snapshot by its numeric versionId.
POST
/
api
/
v2
/
agent
/
{agentId}
/
versions
/
{versionId}
Copy
Ask AI
curl --request POST \
--url https://api.vida.dev/api/v2/agent/{agentId}/versions/{versionId} \
--header 'Content-Type: application/json' \
--data '{
"snapshot": {}
}'
Copy
Ask AI
{
"success": true,
"versionId": 1750195000123
}
Authorizations
Vida API Token
Path Parameters
Agent Id
Epoch-ms score identifying the snapshot
Body
application/json
Response
200 - application/json
Version replaced
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://api.vida.dev/api/v2/agent/{agentId}/versions/{versionId} \
--header 'Content-Type: application/json' \
--data '{
"snapshot": {}
}'
Copy
Ask AI
{
"success": true,
"versionId": 1750195000123
}
Assistant
Responses are generated using AI and may contain mistakes.