Skip to main content
PUT
/
config
/
telephony
/
voicelink
Set or update VoiceLink credentials
curl --request PUT \
  --url https://api.vocobase.com/api/v2/config/telephony/voicelink \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "username": "acme-voice",
  "password": "your-voicelink-password",
  "from_number": "+918011223344"
}
'
{
  "success": true,
  "data": {
    "username": "acme-voice",
    "from_number": "+918011223344",
    "base_url": null,
    "message": "VoiceLink 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
username
string
required

VoiceLink panel username.

Example:

"acme-voice"

password
string
required

VoiceLink panel password. Stored encrypted; never returned.

Example:

"your-voicelink-password"

from_number
string
required

VoiceLink-provisioned number used as the caller ID, in E.164 format. Stored as the connection's default DID.

Example:

"+918011223344"

base_url
string

Optional VoiceLink API base URL. Omit to use the default host.

Example:

"https://app.voicelink.co.in"

Response

VoiceLink credentials updated.

success
boolean
data
object