with Screenshot API and Burst SMS?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
screenshot_api: {
type: "app",
app: "screenshot_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://shot.screenshotapi.net/v3/screenshot`,
params: {
token: `${this.screenshot_api.$auth.api_key}`,
url: `https://google.com`,
output: `JSON`,
},
})
},
})
The Burst SMS API on Pipedream allows you to send SMS messages, manage contacts, and automate responses based on incoming messages. By leveraging Pipedream's serverless platform, you can craft workflows that integrate Burst SMS with other apps to create powerful communication automations. From marketing campaigns to alert systems, the API's capabilities are a gateway to enhanced engagement through text messaging.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
burst_sms: {
type: "app",
app: "burst_sms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.transmitsms.com/get-balance.json`,
auth: {
username: `${this.burst_sms.$auth.api_key}`,
password: `${this.burst_sms.$auth.api_secret}`,
},
})
},
})