Interseller

Outbound automation platform

Integrate the Interseller API with the Filter API

Setup the Interseller API trigger to run a workflow which integrates with the Filter API. Pipedream's integration platform allows you to integrate Interseller and Filter remarkably fast. Free for developers.

Continue execution if a condition Is met with Filter API on New Contact from Interseller API
Interseller + Filter
 
Try it
Continue execution if a condition Is met with Filter API on New Contact Replied from Interseller API
Interseller + Filter
 
Try it
End execution if a condition is met with Filter API on New Contact from Interseller API
Interseller + Filter
 
Try it
End execution if a condition is met with Filter API on New Contact Replied from Interseller API
Interseller + Filter
 
Try it
New Contact from the Interseller API

Emit new event when a new contact is created in Interseller.

 
Try it
New Contact Replied from the Interseller API

Emit new event when a contact is replied.

 
Try it
Continue execution if a condition Is met with the Filter API

Continue workflow execution only if a condition is met

 
Try it
End execution if a condition is met with the Filter API

End workflow execution if a condition is met

 
Try it
Set Contact Replied with the Interseller API

Update an existing contact to indicate as contacted. See the documentation

 
Try it
Update Contact with the Interseller API

Update an existing contact. See the documentation

 
Try it

Overview of Interseller

The Interseller API can be used to build a variety of applications, including:

  • An application to search for and contact potential customers
  • A CRM application to manage your customer relationships
  • A sales intelligence application to gather information about potential
    customers
  • A marketing application to target potential customers with personalized
    messages
  • An accounting application to track your sales and customers
  • A customer service application to help your customers with their inquiries
  • A human resources application to keep track of your employees

Connect Interseller

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: {
    interseller: {
      type: "app",
      app: "interseller",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `http://interseller.io/api/team/users`,
      headers: {
        "X-API-Key": `${this.interseller.$auth.api_key}`,
      },
    })
  },
})

Overview of Filter

The Filter API is a great way to build powerful workflows that can manipulate
and transform data. Here are some examples of what you can build using the
Filter API:

  • A workflow that transforms data from one format to another
  • A workflow that filters out data that does not meet certain criteria
  • A workflow that sorts data in a specific order
  • A workflow that calculates statistics or aggregates data
  • A workflow that combines data from multiple sources

Connect Filter

1
2
3
4
5
6
7
8
9
10
export default defineComponent({
  async run({ steps, $ }) {
    let condition = false
    if (condition == false) {
      $.flow.exit("Ending workflow early because the condition is false")
    } else {
        $.export("$summary", "Continuing workflow, since condition for ending was not met.")
    }
  },
})