Instabot

Instabot is a chatbot platform that increases conversion where you are already interacting with your users - via your website, mobile app or email. You can build, integrate, and launch Instabot into your campaigns quickly.

Integrate the Instabot API with the Formatting API

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

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Instabot

The Instabot API offers the ability to programmatically interact with the Instabot platform, enabling the automation of chatbot conversations and data. By leveraging this API with Pipedream, you can create powerful workflows to enhance user engagement, collect insightful data, and streamline communications. It supports various operations like sending messages, managing users, and retrieving conversation logs, which can be harnessed for targeted marketing, customer support automation, and real-time analytics.

Connect Instabot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    instabot_chatbot_platform: {
      type: "app",
      app: "instabot_chatbot_platform",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.instabot.io/v1/users`,
      headers: {
        "X-Instabot-Api-Key": `${this.instabot_chatbot_platform.$auth.api_key}`,
        "Authorization": `X-Instabot-Master-Api-Key ${this.instabot_chatbot_platform.$auth.master_api_key}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})