import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rejoiner: {
type: "app",
app: "rejoiner",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rj2.rejoiner.com/api/v2/${this.rejoiner.$auth.site_id}/ping/`,
headers: {
"Authorization": `Rejoiner ${this.rejoiner.$auth.api_key}`,
},
})
},
})
Emit new event when a contact is added to the specified list. See the documentation.
Adds a customer to a specific list, or if the customer already exists, will update the record of that customer with the supplied data. See the documentation
Triggers the beginning of a customer journey in Rejoiner. See the documentation
Updates a customer's profile information. See the documentation
Rejoiner uses API keys for authentication. When you connect your Rejoiner account, Pipedream securely stores the keys so you can easily authenticate to Rejoiner APIs in both code and no-code steps.