Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
169 changes: 91 additions & 78 deletions example.py
Original file line number Diff line number Diff line change
@@ -1,78 +1,91 @@
from infusionsoft.library import Infusionsoft

infusionsoft = Infusionsoft('Infusionsoft Account Name', 'API Key Goes Here')

# Example 1: Add Contact
#----------------------------------------------------------------------------------------
contact = {'FirstName' : 'John', 'LastName' : 'Doe', 'Email' : 'johndoe@email.com'}
print infusionsoft.ContactService('add', contact)

# Example 2: Merge two duplicate contacts
#----------------------------------------------------------------------------------------
contactId = 56
duplicateContactId = 57
print infusionsoft.ContactService('merge', contactId, duplicateContactId)

# Example 3: Query a contact using data service
#----------------------------------------------------------------------------------------
table = 'Contact'
returnFields = ['Id', 'FirstName']
query = {'FirstName' : 'John'}
limit = 10
page = 0
print infusionsoft.DataService('query', table, limit, page, query, returnFields)

# Example 4: Return a products inventory using product service
#----------------------------------------------------------------------------------------
productId = 1
print infusionsoft.ProductService('getInventory', productId)

# Example 5: Charge an invoice using the invoice service
#----------------------------------------------------------------------------------------
invoiceId = 16
notes = 'API Upsell Payment'
creditCardId = 2
merchantAccountId = 1
bypassCommissions = False
print infusionsoft.InvoiceService('chargeInvoice', invoiceId, notes, creditCardId, merchantAccountId, bypassCommissions)

# Example 6: Send an email using the email service
#----------------------------------------------------------------------------------------
contactList = [123, 456, 789]
fromAddress = 'john@test.com'
toAddress = '~Contact.Email~'
ccAddress = ''
bccAddress = ''
contentType = 'Text'
subject = 'This is just a test email, relax!'
htmlBody = ''
textBody = 'This is the contant for the email'
print infusionsoft.APIEmailService('sendEmail', contactList, fromAddress, toAddress, ccAddress, bccAddress, contentType, subject, htmlBody, textBody)

# Example 7: Get all report columns using the search service
#----------------------------------------------------------------------------------------
savedSearchId = 3
userId = 1
print infusionsoft.SearchService('getAllReportColumns', savedSearchId, userId)

# Example 8: Get all shipping options with the shipping service
#----------------------------------------------------------------------------------------
print infusionsoft.ShippingService('getAllShippingOptions')

# Example 9: Get affiliate payouts info using filter with the affiliate service
#----------------------------------------------------------------------------------------
from datetime import datetime
affiliateId = 2
filterStartDate = datetime(2012, 10, 18)
filterEndDate = datetime(2012, 10, 23)
print infusionsoft.APIAffiliateService('affPayouts', affiliateId, filterStartDate, filterEndDate)

# Example 10: Get the download URL of a particular file
#----------------------------------------------------------------------------------------
fileId = 23
print infusionsoft.FileService('getDownloadUrl', fileId)

# Example 11: Using the library server method to access the API : Create a contact
#----------------------------------------------------------------------------------------
contact = {'FirstName' : 'John', 'LastName' : 'Doe', 'Email' : 'johndoe@email.com'}
print infusionsoft.server().ContactService.add(infusionsoft.key, contact)
from infusionsoft.library import Infusionsoft

infusionsoft = Infusionsoft('Infusionsoft Account Name', 'API Key Goes Here')

# Example 1: Add Contact
#----------------------------------------------------------------------------------------
contact = {'FirstName' : 'John', 'LastName' : 'Doe', 'Email' : 'johndoe@email.com'}
print(infusionsoft.ContactService('add', contact))

# Example 2: Merge two duplicate contacts
#----------------------------------------------------------------------------------------
contactId = 56
duplicateContactId = 57
print(infusionsoft.ContactService('merge', contactId, duplicateContactId))

# Example 3: Query a contact using data service
#----------------------------------------------------------------------------------------
table = 'Contact'
returnFields = ['Id', 'FirstName']
query = {'FirstName' : 'John'}
limit = 10
page = 0
print(infusionsoft.DataService('query', table, limit, page, query, returnFields))

# Example 4: Return a products inventory using product service
#----------------------------------------------------------------------------------------
productId = 1
print(infusionsoft.ProductService('getInventory', productId))

# Example 5: Charge an invoice using the invoice service
#----------------------------------------------------------------------------------------
invoiceId = 16
notes = 'API Upsell Payment'
creditCardId = 2
merchantAccountId = 1
bypassCommissions = False
print(infusionsoft.InvoiceService('chargeInvoice', invoiceId, notes, creditCardId, merchantAccountId, bypassCommissions))

# Example 6: Send an email using the email service
#----------------------------------------------------------------------------------------
contactList = [123, 456, 789]
fromAddress = 'john@test.com'
toAddress = '~Contact.Email~'
ccAddress = ''
bccAddress = ''
contentType = 'Text'
subject = 'This is just a test email, relax!'
htmlBody = ''
textBody = 'This is the contant for the email'
print(infusionsoft.APIEmailService('sendEmail', contactList, fromAddress, toAddress, ccAddress, bccAddress, contentType, subject, htmlBody, textBody))

# Example 7: Get all report columns using the search service
#----------------------------------------------------------------------------------------
savedSearchId = 3
userId = 1
print(infusionsoft.SearchService('getAllReportColumns', savedSearchId, userId))

# Example 8: Get all shipping options with the shipping service
#----------------------------------------------------------------------------------------
print(infusionsoft.ShippingService('getAllShippingOptions'))

# Example 9: Get affiliate payouts info using filter with the affiliate service
#----------------------------------------------------------------------------------------
from datetime import datetime
affiliateId = 2
filterStartDate = datetime(2012, 10, 18)
filterEndDate = datetime(2012, 10, 23)
print(infusionsoft.APIAffiliateService('affPayouts', affiliateId, filterStartDate, filterEndDate))

# Example 10: Get the download URL of a particular file
#----------------------------------------------------------------------------------------
fileId = 23
print(infusionsoft.FileService('getDownloadUrl', fileId))

# Example 11: Using the library server method to access the API : Create a contact
#----------------------------------------------------------------------------------------
contact = {'FirstName' : 'John', 'LastName' : 'Doe', 'Email' : 'johndoe@email.com'}
print(infusionsoft.server().ContactService.add(infusionsoft.key, contact))

#Example 12: Find the total number of contacts using the data service
----------------------------------------------------------------------------------------
# table = 'Contact'
# query = {'AccountId': '%'}
# print(infusionsoft.DataService('count', table, query)
#
#Example 13: Find the number of contacts for a given lead source with the data service
----------------------------------------------------------------------------------------
# table = 'Contact'
# query = {'Leadsource': 'example leadsource name'}
# print(infusionsoft.DataService('count', table, query)
#
55 changes: 29 additions & 26 deletions infusionsoft/library.py
Original file line number Diff line number Diff line change
@@ -1,27 +1,30 @@
from xmlrpclib import ServerProxy, Error

class Infusionsoft:

def __init__(self, name, api_key):
self.client = ServerProxy("https://" + name + ".infusionsoft.com/api/xmlrpc")
self.client.error = Error
self.key = api_key

def __getattr__(self, service):
def function(method, *args):
call = getattr(self.client, service + '.' + method)
try:
return call(self.key, *args)
except self.client.error, v:
return "ERROR", v
return function

def server(self):
return self.client

class InfusionsoftOAuth(Infusionsoft):

def __init__(self, access_token):
self.client = ServerProxy("https://api.infusionsoft.com/crm/xmlrpc/v1?access_token=%s" % access_token)
self.client.error = Error
try:
from xmlrpc.client import ServerProxy, Error
except ImportError:
from xmlrpclib import ServerProxy, Error

class Infusionsoft:

def __init__(self, name, api_key):
self.client = ServerProxy("https://" + name + ".infusionsoft.com/api/xmlrpc")
self.client.error = Error
self.key = api_key

def __getattr__(self, service):
def function(method, *args):
call = getattr(self.client, service + '.' + method)
try:
return call(self.key, *args)
except self.client.error as v:
return "ERROR", v
return function

def server(self):
return self.client

class InfusionsoftOAuth(Infusionsoft):

def __init__(self, access_token):
self.client = ServerProxy("https://api.infusionsoft.com/crm/xmlrpc/v1?access_token=%s" % access_token)
self.client.error = Error
self.key = access_token