SilFer Bots

Facebook Messenger bot for sales

Integrate the SilFer Bots API with the Data Stores API

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

Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store.

 
Try it
Append to record with the Data Stores API

Append to a record in your data store Pipedream Data Store. If the record does not exist, a new record will be created in an array format.

 
Try it
Check for existence of key with the Data Stores API

Check if a key exists in your Pipedream Data Store or create one if it doesn't exist.

 
Try it
Delete a single record with the Data Stores API

Delete a single record in your Pipedream Data Store.

 
Try it

Overview of SilFer Bots

SilFer Bots is a conversational intelligence platform that enables you to
create intelligent virtual assistants, chatbots, and applications to meet the
needs of businesses and their customers. It is a comprehensive, secure, and
enterprise-grade platform to build, deploy, automate, and scale conversational
solutions.

With SilFer Bots, businesses can quickly create virtual assistants to capture
leads, enhance customer support, and provide personalized experiences. The
platform is designed to easily integrate with legacy systems and chatbot APIs,
providing complete control and better customer service.

Examples of what can be built using SilFer bots:

  • Virtual Assistants
  • Chatbots
  • Business Automation
  • Business Intelligence
  • Customer Support
  • Sales Funnels
  • Surveys and Feedback bots
  • Appointment Scheduling systems
  • Interactive Games and Content
  • Notifications and Reminders

Connect SilFer Bots

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: {
    silfer_bots: {
      type: "app",
      app: "silfer_bots",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.silferbots.co/user/[USER_ID]`,
      headers: {
        "X-SILFER-ACCESS-TOKEN": `${this.silfer_bots.$auth.api_key}`,
      },
    })
  },
})

Overview of Data Stores

With the Data Stores API, you can build applications that:

  • Store data for later retrieval
  • Retrieve data from a store
  • Update data in a store
  • Delete data from a store

Connect Data Stores

1
2
3
4
5
6
7
8
9
10
11
export default defineComponent({
  props: {
    myDataStore: {
      type: "data_store",
    },
  },
  async run({ steps, $ }) {
    await this.myDataStore.set("key_here","Any serializable JSON as the value")
    return await this.myDataStore.get("key_here")
  },
})