Sakari is a cloud-based SaaS company providing text messaging for business teams around the world. Integrate SMS with your favorite systems today.
The Sakari SMS API allows you to send and receive text messages programmatically, giving you the power to create custom messaging experiences within your apps. On Pipedream, you can harness this capability to build serverless workflows that integrate SMS with various services and automate communication processes. Whether it's sending notifications, processing inbound messages, or coordinating with other APIs, the possibilities are broad.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sakari_sms: {
type: "app",
app: "sakari_sms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sakari.io/v1/accounts/${this.sakari_sms.$auth.account_id}/contacts`,
headers: {
Authorization: `Bearer ${this.sakari_sms.$auth.oauth_access_token}`,
},
})
},
})
The ServiceNow API lets developers access and manipulate records, manage workflows, and integrate with other services on its IT service management platform. These capabilities support automating tasks, syncing data across platforms, and boosting operational efficiencies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
servicenow: {
type: "app",
app: "servicenow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.servicenow.$auth.instance_name}.service-now.com/api/now/table/incident`,
headers: {
Authorization: `Bearer ${this.servicenow.$auth.oauth_access_token}`,
},
})
},
})