Snippets

Monil Gandhi Add voice line

Created by Monil Gandhi
from __future__ import print_function
import time
import braango
import braango.models
import braango.apis
from braango.rest import ApiException
from pprint import pprint


'''
  @author braango
         
          Sample code showing how to create add VOICE number for personnel
'''

#TEST auth token. Please contact
#sales@braango.com to have one
#created for you  
braango.configuration.api_key['auth_token'] = 'ISNWF0P30WM0CMK'

# create an instance of the API class
api_instance = braango.VoiceApi()

# str | id of _sub_dealer_
subdealerid = 'subdealers2004' 

# str | id of _personnel_
salespersonid = 'c5313913-5768-4eef-b5ea-447cc8f5aec3' 

api_Key ="ISNMdzuNiKG7jhl9d9v"

#Set the account type to partner for
#virtual dealer and partner hosted
#accounts

account_type = "partner"

#This id for your tracking, will be reflected back in response.
#Doesn't get used by Braango
#If not speficied, braango will return session-id in its response

id_voice = "voice-create-s2004"

# { "api_key": "ISNGvAzwuy4X7vAqrtV", "id": "any value",
#  "account_type": "partner" }
requestHeader = braango.models.RequestHeader(api_Key,id_voice,account_type)


phone_number = "4088723456";

voiceInputBody = braango.models.VoiceInputBody(phone_number)

# VoiceInput |  (optional)
voiceInput = braango.VoiceInput(requestHeader,voiceInputBody) 

try: 
    # Create Voice
    api_response = api_instance.create_voice(subdealerid, salespersonid, body=voiceInput)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling VoiceApi->create_voice: %s\n" % e)

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.