Starloop

Get more online reviews with Starloop. Automated software that helps you get more reviews.

Integrate the Starloop API with the Python API

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

Run Python Code with Python API on New Profile Created from Starloop API
Starloop + Python
 
Try it
New Profile Created from the Starloop API

This source triggers when a new profile is created in Starloop.

 
Try it
List IDs with the Starloop API

Returns your business id and a list of all profile id’s and names. See the documentation

 
Try it
Run Python Code with the Python API

Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.

 
Try it
Send Invite with the Starloop API

Creates a new recipient and sends a Starloop invite (Email | SMS | both) to your customer to leave a review. See the documentation

 
Try it

Overview of Starloop

The Starloop API provides a pathway to streamline customer feedback management by allowing the automation of review requests, monitoring of multiple review sites, and analysis of customer sentiment. With Pipedream, you can craft serverless workflows that leverage these capabilities, integrating Starloop's functionalities with other apps and services to amplify your customer relationship strategies.

Connect Starloop

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    starloop: {
      type: "app",
      app: "starloop",
    }
  },
  async run({steps, $}) {
    const data = {
      "token": `${this.starloop.$auth.api_key}`,
    }
    return await axios($, {
      method: "post",
      url: `https://go.starloop.com/api/list_ids`,
      headers: {
        "Content-Type": `application/json`,
        "accept": `application/json`,
      },
      data,
    })
  },
})

Overview of Python

Develop, run and deploy your Python code in Pipedream workflows. Integrate seamlessly between no-code steps, with connected accounts, or integrate Data Stores and manipulate files within a workflow.

This includes installing PyPI packages, within your code without having to manage a requirements.txt file or running pip.

Below is an example of using Python to access data from the trigger of the workflow, and sharing it with subsequent workflow steps:

Connect Python

1
2
3
4
5
def handler(pd: "pipedream"):
  # Reference data from previous steps
  print(pd.steps["trigger"]["context"]["id"])
  # Return data for use in future steps
  return {"foo": {"test":True}}