8x8 Connect is your intuitive all-in-one omnichannel communications management platform. Send millions of messages, get insights, and optimize effortlessly.
Check the status of an SMS Logs export job and to get a download link if its generation has succeeded. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
_8x8_connect: {
type: "app",
app: "_8x8_connect",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this._8x8_connect.$auth.base_url}/api/v1/accounts/${this._8x8_connect.$auth.account_id}/balance`,
headers: {
Authorization: `Bearer ${this._8x8_connect.$auth.api_key}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.