Skip to main content
PUT
/
config
/
telephony
/
vobiz
Set or update Vobiz credentials
curl --request PUT \
  --url https://api.vocobase.com/api/v2/config/telephony/vobiz \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "auth_id": "MA_XXXXXXXX",
  "auth_token": "your_vobiz_auth_token",
  "from_number": "+918011223344"
}
'
{
  "success": true,
  "data": {
    "auth_id": "MA_X****XXXX",
    "from_number": "+918011223344",
    "message": "Vobiz 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

Vobiz Auth ID (typically formatted as MA_XXXXXXXX).

Example:

"MA_XXXXXXXX"

auth_token
string
required

Vobiz Auth Token.

Example:

"your_vobiz_auth_token"

from_number
string
required

Vobiz-provisioned phone number used as the caller ID, in E.164 format.

Example:

"+918011223344"

Response

Vobiz credentials updated.

success
boolean
data
object