API Documentation
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
Billing
Provision Billing System Configuration
Provision or Update Your Billing System Configuration
POST
/
api
/
v2
/
billing
/
billingSystemConfig
Provision Billing System Configuration
Copy
Ask AI
curl --request POST \
--url https://api.vida.dev/api/v2/billing/billingSystemConfig \
--header 'Content-Type: application/json' \
--data '{
"billingSystemType": "stripe",
"apiKey": "somekey",
"publishableKey": "somepublishablekey",
"webhookSigningKey": "somewebhooksigningkey",
"site": "vida",
"webhookUsername": "someusername",
"webhookPassword": "somepassword"
}'
Copy
Ask AI
{
"success": true,
"message": "Success"
}
Authorizations
Vida API Token
Body
application/json
Response
200
application/json
Successfull response
The response is of type object
.
Provision Billing System Configuration
Copy
Ask AI
curl --request POST \
--url https://api.vida.dev/api/v2/billing/billingSystemConfig \
--header 'Content-Type: application/json' \
--data '{
"billingSystemType": "stripe",
"apiKey": "somekey",
"publishableKey": "somepublishablekey",
"webhookSigningKey": "somewebhooksigningkey",
"site": "vida",
"webhookUsername": "someusername",
"webhookPassword": "somepassword"
}'
Copy
Ask AI
{
"success": true,
"message": "Success"
}
Assistant
Responses are generated using AI and may contain mistakes.