Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
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}`,
},
})
},
})