with FranConnect and Loops.so?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
franconnect: {
type: "app",
app: "franconnect",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `${this.franconnect.$auth.api_uri}/rest/dataservices/module?responseType=JSON`,
headers: {
Authorization: `Bearer ${this.franconnect.$auth.oauth_access_token}`,
},
})
},
})
The Loops.so API enables you to automate repetitive tasks, create custom integrations, and manage video campaigns directly from Pipedream. It offers endpoints to manage videos, incorporate user-generated content, and track metrics. On Pipedream, you can connect Loops.so with a multitude of other services for seamless data flow across platforms, enabling efficient automation of content distribution, marketing analytics, and customer engagement workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
loops_so: {
type: "app",
app: "loops_so",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.loops.so/api/v1/api-key`,
headers: {
Authorization: `Bearer ${this.loops_so.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})