SMS Marketing software.
Adds a new contact to a list in the Octopush SMS Gateway. See the documentation
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
The Octopush SMS API lets you programmatically send text messages, providing a powerful way to reach out to customers directly on their phones. With Pipedream, you can create workflows that trigger SMS sending via Octopush based on various events, streamlining communication processes. You could use this API to send alerts, reminders, verification codes, or marketing messages, and integrate with other apps to respond to emails, form submissions, or updates in a CRM.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
octopush_sms: {
type: "app",
app: "octopush_sms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.octopush.com/v1/public/wallet/check-balance`,
headers: {
"Content-Type": `application/json`,
"api-login": `${this.octopush_sms.$auth.api_login}`,
"api-key": `${this.octopush_sms.$auth.api_key}`,
},
})
},
})
Develop, run and deploy your Python code in Pipedream workflows. Integrate seamlessly between no-code steps, with connected accounts, or integrate Data Stores and manipulate files within a workflow.
This includes installing PyPI packages, within your code without having to manage a requirements.txt
file or running pip
.
Below is an example of using Python to access data from the trigger of the workflow, and sharing it with subsequent workflow steps:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}