with npm and Offorte?
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
Emit new event when an event is created. See the documentation
Create a new contact organisation in Offorte. See the documentation
Create a new contact person in Offorte. See the documentation
Get the details of a contact in Offorte. See the documentation
List all proposal templates in Offorte. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
offorte: {
type: "app",
app: "offorte",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://connect.offorte.com/api/v2/${this.offorte.$auth.account_name}/hello`,
headers: {
"authorization": `${this.offorte.$auth.api_key}`,
},
})
},
})