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
Phone Numbers
Assign a BYO phone number
Assign a phone number you are supplying yourself to an agent. Requires reseller account.
POST
/
api
/
v2
/
phoneNumber
/
byo
/
assign
Copy
Ask AI
curl --request POST \
--url https://api.vida.dev/api/v2/phoneNumber/byo/assign \
--header 'Content-Type: application/json' \
--data '{
"number": "+12145551234"
}'
Copy
Ask AI
{
"success": true,
"message": "Success"
}
Authorizations
Vida API Token
Body
application/json
Response
200
application/json
Successfully assigned phone number to account
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://api.vida.dev/api/v2/phoneNumber/byo/assign \
--header 'Content-Type: application/json' \
--data '{
"number": "+12145551234"
}'
Copy
Ask AI
{
"success": true,
"message": "Success"
}
Assistant
Responses are generated using AI and may contain mistakes.