Questions tagged [infusionsoft]

Infusionsoft is sales and marketing automation software that combines CRM, email marketing and e-commerce.

158 questions
1
vote
0 answers

Email to a contactList

how I can create a contactlist with this contact making function. for that am using a infusionsoft API this is the API https://github.com/infusionsoft/PHP-iSDK $conDat = array('FirstName' => 'Kamran', 'LastName' => 'Asadi', 'Email' =>…
Kamran Asadi
  • 85
  • 2
  • 7
1
vote
1 answer

How to make a merge field in infusionsoft

I am using infusionsoft API for email functionality, I don't know how to make a merge filed for to the address I am to send email. This is the API "https://github.com/infusionsoft/PHP-iSDK" this is the example given in documentation, but it is not…
Kamran Asadi
  • 85
  • 2
  • 7
1
vote
0 answers

Not any receiving Email all the things going fine

I am using PHP iSDK API for sending email. This is my email sending file. "; include('iSDK/src/isdk.php'); $myApp = new iSDK(); if ($myApp->cfgCon("connectionName")){ echo "Connected..."; }else{ echo "Not…
Kamran Asadi
  • 85
  • 2
  • 7
1
vote
1 answer

iSDK - Can't call function sendEmail (undefined function)

I am using this API "https://github.com/infusionsoft/PHP-iSDK". I am calling it in a simple php file but I am having a error, I am new to php any body with some easy solution, here is my code. "; …
Kamran Asadi
  • 85
  • 2
  • 7
1
vote
2 answers

Infusionsoft Javascript - Necessary?

I am inserting an Infusionsoft webform into a website I am building for a client. He wants an Infusionsoft webform used which is okay. However The onsubmit of the form has a lot of code that I don't understand. What is its purpose? Here is the…
L84
  • 45,514
  • 58
  • 177
  • 257
1
vote
1 answer

Infusionsoft - How to get the all the available fields for a form using infusionsoft API (PHP SDK)

I am working on an infusionsoft application. I need to get all the available fields for a webform using infusionsoft API. I am doing continuous research on this issue, but cant find a solution for it. I need the available form fields to map to my…
Vishnu Sureshkumar
  • 2,246
  • 6
  • 35
  • 52
1
vote
3 answers

How to insert an order into Infusionsoft via API

I have the code to insert the items into to an order as follows, $ordId = 1; $prodId = 221; $type = ''; $price = 1000; $qty = 5; $desc = DESC; $notes = "test notes"; $test = $app->addOrderItem($ordId, $prodId, $type, $price, $qty, $desc,…
Nikhil
  • 1,450
  • 11
  • 24
1
vote
2 answers

Wordpress wpmember plugin payment method with Infusionsoft payment gateway

Is it possible to use wpmember (http://wordpress.org/plugins/wp-members/) plugin integrate payment method using Infusionsoft payment gateway? How to use Infusionsoft payment gateway in wordpress?
Muhammad Asif Mahmood
  • 1,650
  • 1
  • 9
  • 10
0
votes
0 answers

Search by actiondate range using Infusionsoft XML-RPC (single field multiple conditions)

I'm trying to improve an old Infusionsoft service that is getting too slow. I noticed that is doing too many requests in order to find events (ContactAction) in a date range. I tried to research before, but as it is a bit old, there are not many…
Uriel
  • 352
  • 5
  • 17
0
votes
0 answers

PYTHON: Issues with Infusionsoft Deleting Method

I am new to Python and working with the Infusionsoft API and I am hitting a snag here. I am writing a script that retrieves all of the contacts in our system and adds them to a Pandas Data frame if they contain a given string. From what I can tell…
0
votes
0 answers

Two packages with the same import name conflicting

I am interacting with the InfusionSoft API in a Django project that I am working on. I would like to use both infusionsoft-client package and infusionsoft-python. However, they both require import infusionsoft so now I am getting error messages…
Jake Mulhern
  • 660
  • 5
  • 13
0
votes
1 answer

Migrate from XML-RPC to REST

I'm using JAVA and I must convert every single XML-RPC call to a REST one. How do I do it? I'm using KEAP (previously known as "Infusionsoft") as CRM. I have a lot of calls like this one: Object[] objects=(Object[])…
Unearthly
  • 121
  • 6
0
votes
1 answer

need some help connecting wordpress registration form to infusionsoft

I'm new to all of this and I've tried searching myself but didn't find what I needed. I need to connect the default WordPress registration form to infusionsoft. So every time a new member registers, I get their email address in my contact list at…
Gotoinc
  • 35
  • 2
  • 7
0
votes
0 answers

Align input fields on an Infusionsoft form

how do i align the input fields on an Infusionsoft form as you can see on this page: https://www.nurturingai.com/test-page/ This is the code for the form: First Name * Email * …
0
votes
1 answer

Creating "List Box" custom field in Infusionsoft using its API

We need to create a List Box type of custom field thru the API. If we follow this guide, we can create Text, Dropdown, and TextArea custom fields except the ones not mentioned (in our case, we need "List Box"). But it didn't give any idea on what to…
thisNeil
  • 73
  • 1
  • 3
  • 11