Skip to main content
PUT
/
config
/
telephony
/
mcube
Set or update MCube credentials
curl --request PUT \
  --url https://api.vocobase.com/api/v2/config/telephony/mcube \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "jwt_token": "<string>",
  "exe_number": "+919876543210"
}
'
{
  "success": true,
  "data": {
    "exe_number": "+919876543210",
    "message": "MCube credentials updated successfully."
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
jwt_token
string
required

MCube JWT authentication token.

exe_number
string
required

MCube executive number (4-15 digits, optional + prefix).

Example:

"+919876543210"

Response

MCube credentials updated.

success
boolean
data
object