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
Accounts
Create a new account
Create a new account under your organization
POST
/
api
/
v2
/
createAccount
Copy
Ask AI
curl --request POST \
--url https://api.vida.dev/api/v2/createAccount \
--header 'Content-Type: application/json' \
--data '{
"accountName": "Acme Solar Bay Area Support Agent",
"integrations": [
{
"appId": "some-app-id",
"appVersion": "v1",
"appData": {
"apiToken": "APIToken"
}
},
{
"appId": "another-example-app",
"appVersion": "v2",
"appData": {
"accountSid": "sidxxxxxxx",
"accountToken": "tokenxxxxxxx",
"apiUrl": "https://someurl.example"
}
}
]
}'
Copy
Ask AI
This response does not have an example.
Authorizations
Vida API Token
Query Parameters
Organization Id to create account in
Body
application/json
Response
200
OK
Copy
Ask AI
curl --request POST \
--url https://api.vida.dev/api/v2/createAccount \
--header 'Content-Type: application/json' \
--data '{
"accountName": "Acme Solar Bay Area Support Agent",
"integrations": [
{
"appId": "some-app-id",
"appVersion": "v1",
"appData": {
"apiToken": "APIToken"
}
},
{
"appId": "another-example-app",
"appVersion": "v2",
"appData": {
"accountSid": "sidxxxxxxx",
"accountToken": "tokenxxxxxxx",
"apiUrl": "https://someurl.example"
}
}
]
}'
Copy
Ask AI
This response does not have an example.
Assistant
Responses are generated using AI and may contain mistakes.