API Documentation
Authorization
Agents
Phone Numbers
SIP
Messaging
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
Update Organization Settings
Update certain settings for an organization – Reseller/Partner only.
POST
/
api
/
v2
/
updateOrganization
Copy
Ask AI
curl --request POST \
--url https://api.vida.dev/api/v2/updateOrganization \
--header 'Content-Type: application/json' \
--data '{
"productPlanId": "someProductPlanId",
"offeredProductPlanId": "someProductPlanId",
"email": "admin@test.com",
"orgName": "Test Organization",
"smsEnabled": true,
"smsBrandId": "XXXXXX",
"smsCampaignId": "XXXXXX",
"vidaPremium": true,
"externalAccountId": "AC_XXXXXXX",
"externalBillingId": "somebillingId"
}'
Copy
Ask AI
{
"success": true,
"message": "Organization settings updated",
"updatedSettings": [
"productPlanId",
"externalBillingId"
]
}
Authorizations
Vida API Token
Query Parameters
Target Organization Id to update settings for
Body
application/json
Response
200
application/json
At least one setting was successfully updated
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://api.vida.dev/api/v2/updateOrganization \
--header 'Content-Type: application/json' \
--data '{
"productPlanId": "someProductPlanId",
"offeredProductPlanId": "someProductPlanId",
"email": "admin@test.com",
"orgName": "Test Organization",
"smsEnabled": true,
"smsBrandId": "XXXXXX",
"smsCampaignId": "XXXXXX",
"vidaPremium": true,
"externalAccountId": "AC_XXXXXXX",
"externalBillingId": "somebillingId"
}'
Copy
Ask AI
{
"success": true,
"message": "Organization settings updated",
"updatedSettings": [
"productPlanId",
"externalBillingId"
]
}
Assistant
Responses are generated using AI and may contain mistakes.