Hi,
want to get a Contact’s Username and password.I am following this URL : xml-rpc - Keap Developer Portal to get details of a contact .
Sample Code:
from infusionsoft.library import Infusionsoft
from infusionsoft.library import InfusionsoftOAuth
infusionsoft = InfusionsoftOAuth(access_token)
args = {"contactId" : "34", "selectedFields":["email","password"]
print(len(infusionsoft.ContactService('load', args)))
print(infusionsoft.ContactService('load', args))
Output:
(‘ERROR’, <Fault 0: ‘No method matching arguments: java.lang.String, java.util.HashMap’>)
2
Please advise how to get that.