StoryScale

Create shareable product tours and demos in minutes.

Integrate the StoryScale API with the Flutterwave API

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

Create Transfer with Flutterwave API on Tour Viewed from StoryScale API
StoryScale + Flutterwave
 
Try it
Create Transfer with Flutterwave API on New Tour Created from StoryScale API
StoryScale + Flutterwave
 
Try it
Create Transfer with Flutterwave API on Tour Published from StoryScale API
StoryScale + Flutterwave
 
Try it
Verify Transaction with Flutterwave API on New Tour Created from StoryScale API
StoryScale + Flutterwave
 
Try it
Verify Transaction with Flutterwave API on Tour Published from StoryScale API
StoryScale + Flutterwave
 
Try it
New Tour Created from the StoryScale API

Emit new event when a new tour is created. See the documentation

 
Try it
Tour Published from the StoryScale API

Emit new event when a tour gets published. See the documentation

 
Try it
New Subscription from the Flutterwave API

Emit new event when a new subscription is added.

 
Try it
Tour Viewed from the StoryScale API

Emit new event when a tour is viewed. See the documentation

 
Try it
New Transaction from the Flutterwave API

Emit new event when a new transaction is added.

 
Try it
Create Transfer with the Flutterwave API

This action initiates a new transfer. See the documentation

 
Try it
Verify Transaction with the Flutterwave API

Confirms a given transaction. See the documentation

 
Try it

Overview of StoryScale

The StoryScale API enables the creation, management, and retrieval of storytelling content. Integrated within Pipedream's ecosystem, you can automate interactions with the StoryScale API to streamline content workflows, react to events, and sync data across various platforms. Pipedream's serverless platform simplifies the process of setting up event-driven workflows, making it straightforward to harness the capabilities of the StoryScale API without writing complex infrastructure code.

Connect StoryScale

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: {
    storyscale: {
      type: "app",
      app: "storyscale",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://prodapi.storyscale.com/api/v1/user/profile`,
      headers: {
        Authorization: `Bearer ${this.storyscale.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})

Overview of Flutterwave

The Flutterwave API empowers developers to automate payment processes and integrate various payment services within applications. With this API, you can initiate and receive payments, manage transactions, and access customer data securely. Utilizing Pipedream, you can create workflows that trigger on specific events, process data, and integrate with an array of services without managing servers.

Connect Flutterwave

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: {
    flutterwave: {
      type: "app",
      app: "flutterwave",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.flutterwave.com/v3/beneficiaries`,
      headers: {
        Authorization: `Bearer ${this.flutterwave.$auth.secret_api_key}`,
      },
    })
  },
})