with Hyperise and Cogmento?
Emit new event when a new personalised image is viewed. See the documentation
Emit new event when a new contact is added in Cogmento. See the documentation
Emit new event when a new deal is created in Cogmento. See the documentation
Emit new event when a new task is created in Cogmento. See the documentation
Creates a personalised short URL from provided inputs. See the documentation
The Hyperise API lets you dynamically personalize images with user-specific data, making it easier to create tailored visual content for each recipient. With Pipedream, you can automate this personalization process by integrating Hyperise with various apps to generate and share custom images on the fly. This could be particularly useful for marketing campaigns, sales outreach, or social media engagement where personalized content significantly boosts user interaction.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hyperise: {
type: "app",
app: "hyperise",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.hyperise.io/api/v1/regular/users/current`,
params: {
api_token: `${this.hyperise.$auth.api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cogmento: {
type: "app",
app: "cogmento",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.cogmento.com/api/1/auth/user/`,
headers: {
"accept": `application/json`,
"authorization": `Token ${this.cogmento.$auth.oauth_access_token}`,
},
})
},
})