with Seven and Blotato?
Creates a new video using a template. The template takes an ID and input parameters. See documentation
Look up home location register information via Seven. See the documentation
The Seven API offers tools to augment business communications by providing powerful messaging capabilities. With Pipedream, you can harness these features to create custom, automated workflows that trigger on events, process data, and interact with other apps. Imagine sending personalized SMS campaigns, automating customer support responses, or syncing communication data with CRM platforms. Pipedream's serverless platform allows you to build these integrations with ease, tapping into a wide range of pre-built connectors or using HTTP requests to interact with the Seven API directly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
seven: {
type: "app",
app: "seven",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://oauth.sms77.io/me`,
headers: {
Authorization: `Bearer ${this.seven.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
blotato: {
type: "app",
app: "blotato",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://backend.blotato.com/v2/users/me`,
headers: {
"blotato-api-key": `${this.blotato.$auth.api_key}`,
"accept": `*/*`,
},
})
},
})