SMS Platform for professionals
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
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`,
},
})
},
})
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}}