with Offorte and Formatting?
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
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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})