Skip to main content
PUT
/
config
/
telephony
/
tata-smartflo
Set or update Tata Smartflo credentials
curl --request PUT \
  --url https://api.vocobase.com/api/v2/config/telephony/tata-smartflo \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "ops@example.com",
  "password": "your-smartflo-password",
  "from_number": "+918011223344",
  "base_url": "https://api-smartflo.tatateleservices.com"
}
'
{
  "success": true,
  "data": {
    "email": "ops@example.com",
    "from_number": "+918011223344",
    "base_url": "https://api-smartflo.tatateleservices.com",
    "agent_number": null,
    "message": "Tata Smartflo 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
email
string<email>
required

Tata Smartflo panel email.

Example:

"ops@example.com"

password
string
required

Tata Smartflo panel password. Stored encrypted; never returned.

Example:

"your-smartflo-password"

from_number
string
required

Tata Smartflo DID used as the caller ID, in E.164 format. Stored as the connection's default DID.

Example:

"+918011223344"

base_url
string

Optional Tata Smartflo API base URL. Omit to use the default host.

Example:

"https://api-smartflo.tatateleservices.com"

agent_number
string

Optional outbound agent leg number. Use only after Vocobase confirms the required Smartflo value for your account.

Response

Tata Smartflo credentials updated.

success
boolean
data
object