Keap (Infusionsoft)

CRM, sales & marketing platform

Go to site
Explore
/
Apps
/
Keap (Infusionsoft)

Keap (Infusionsoft) API Integrations

Build and run workflows using the Keap (Infusionsoft) API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

The Keap API enables developers to build integrations and applications for Infusionsoft customers. With the Keap API, you can:

  • Query and update data in Infusionsoft
  • AutomateInfusionsoft tasks
  • Build custom Infusionsoft reports
  • Trigger Infusionsoft workflows
  • And much more!

Here are some examples of things you can build with the Keap API:

  • A CRM integration that updates Infusionsoft contact records when a new deal is won in your sales CRM
  • A reporting tool that shows Infusionsoft campaign stats in real-time
  • An ecommerce integration that automatically adds Infusionsoft contacts to a campaign when they purchase a product on your site
  • A tool that allows Infusionsoft users to schedulegenerate and send mass personalised email campaigns
  • And much more!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    infusionsoft: {
      type: "app",
      app: "infusionsoft",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.infusionsoft.com/crm/rest/v1/oauth/connect/userinfo`,
      headers: {
        Authorization: `Bearer ${this.infusionsoft.$auth.oauth_access_token}`,
      },
    })
  },
})

Choose an API to Connect with Keap (Infusionsoft) API

1
-
12
of
1000+
apps by most popular

Create Order Item with Keap (Infusionsoft) API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Keap (Infusionsoft)
 
Try it
Send Message (Advanced) with Discord Webhook API on New Invoice from Keap (Infusionsoft) API
Keap (Infusionsoft) + Discord Webhook
 
Try it
Create Order Item with Keap (Infusionsoft) API on New Message from Discord API
Discord + Keap (Infusionsoft)
 
Try it
Create Order Item with Keap (Infusionsoft) API on New Message in Channel from Discord Bot API
Discord Bot + Keap (Infusionsoft)
 
Try it
Create Order Item with Keap (Infusionsoft) API on New Submission from Typeform API
Typeform + Keap (Infusionsoft)
 
Try it
New Invoice from the Keap (Infusionsoft) API

Emit new event for each new invoice See docs here

 
Try it
New Order from the Keap (Infusionsoft) API

Emit new event for each new order See docs here

 
Try it
New Payment from the Keap (Infusionsoft) API

Emit new event for each new payment See docs here

 
Try it
Create Order Item with the Keap (Infusionsoft) API

Add an item to an existing order See docs here

 
Try it
Create Payment with the Keap (Infusionsoft) API

Create or add a payment record See docs here

 
Try it
Get Company with the Keap (Infusionsoft) API

Retrieve details of a Company See docs here

 
Try it
Get Contact with the Keap (Infusionsoft) API

Retrieve details of a Contact See docs here

 
Try it

Authentication

Keap (Infusionsoft) uses OAuth authentication. When you connect your Keap (Infusionsoft) account, Pipedream will open a popup window where you can sign into Keap (Infusionsoft) and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Keap (Infusionsoft) API.

Pipedream requests the following authorization scopes when you connect your account:

OAuth Request Configurations:
  1. authorization
    GEThttps://accounts.infusionsoft.com/app/oauth/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}
  2. accessToken
    POSThttps://api.infusionsoft.com/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&code={{oauth.code}}&grant_type=authorization_code
  3. refreshToken
    POSThttps://api.infusionsoft.com/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&grant_type=refresh_token&refresh_token={{oauth.refresh_token}}