with Pumble and SMS Partner?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pumble: {
type: "app",
app: "pumble",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://pumble-api-keys.addons.marketplace.cake.com/listChannels`,
headers: {
"Api-Key": `${this.pumble.$auth.api_key}`,
},
})
},
})
The SMS Partner API allows you to integrate SMS functionalities within your Pipedream workflows. This API gives you the power to send text messages, check delivery statuses, and manage contacts directly through programmatic means. By leveraging this API on Pipedream, you can automate notifications, streamline communication processes, and build complex messaging workflows that can interact with a plethora of other services available on Pipedream's platform.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sms_partner: {
type: "app",
app: "sms_partner",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.smspartner.fr/v1/me`,
headers: {
"Content-Type": `application/json`,
},
params: {
apiKey: `${this.sms_partner.$auth.api_key}`,
_format: `json`,
},
})
},
})