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}`,
},
})
},
})
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
Offorte uses API keys for authentication. When you connect your Offorte account, Pipedream securely stores the keys so you can easily authenticate to Offorte APIs in both code and no-code steps.