with Spoke Phone and Minerstat?
The Spoke Phone API provides a means to programmatically interact with Spoke Phone's voice and SMS services. With this API on Pipedream, you can automate call logging, SMS messaging, and dynamically manage users and call flows. Pipedream's serverless platform allows for the creation of complex workflows, integrating Spoke Phone with a multitude of other apps, triggering actions based on events such as incoming calls or messages, and even processing data with built-in code steps.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
spoke_phone: {
type: "app",
app: "spoke_phone",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://integration.spokephone.com/users`,
headers: {
Authorization: `Bearer ${this.spoke_phone.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
minerstat: {
type: "app",
app: "minerstat",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.minerstat.com/v2/worker`,
headers: {
Authorization: `Bearer ${this.minerstat.$auth.api_token}`,
"Accept": `application/json`,
},
params: {
name: `Apollo`,
},
})
},
})