Snippets

Monil Gandhi Create Email

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 email 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.EmailsApi()

# str | id of _sub_dealer_
subdealerid = 'subdealers2004' 

# str | if 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_email = "email-create-s2004"

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

email = "test3@subdealers2004.com";

type_adf_crm = False

#{ email, type_adf_crm }
emailInputBody = braango.models.EmailInputBody(email, type_adf_crm)

# EmailInput |  
body = braango.EmailInput(requestHeader,emailInputBody) 

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

Comments (0)

HTTPS SSH

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