Skip to main content
PUT
/
config
/
telephony
/
plivo
Set or update Plivo credentials
curl --request PUT \
  --url https://api.vocobase.com/api/v2/config/telephony/plivo \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "auth_id": "MAxxxxxxxxxxxxxxxxxx",
  "auth_token": "your_plivo_auth_token",
  "from_number": "+14155551234"
}
'
{
  "success": true,
  "data": {
    "auth_id": "MAxx****xxxx",
    "from_number": "+14155551234",
    "message": "Plivo credentials updated successfully."
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.vocobase.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key in format: rg_live_xxxx. Pass as a Bearer token in the Authorization header.

Body

application/json
auth_id
string
required

Plivo Auth ID (starts with MA for production accounts, SA for subaccounts).

Example:

"MAxxxxxxxxxxxxxxxxxx"

auth_token
string
required

Plivo Auth Token.

Example:

"your_plivo_auth_token"

from_number
string
required

Plivo-provisioned phone number used as the caller ID, in E.164 format. Must have Voice capabilities enabled.

Example:

"+14155551234"

Response

Plivo credentials updated.

success
boolean
data
object