Hyperise is essentially an image personalisation toolkit. These images can be used in outreach and on your website landing pages. Hyperise integrates with 1000's of MarTech, so whatever your outreach and website builder tools you're using, we most likely integrate with them.
Emit new event when a new personalised image is viewed. See the documentation
Creates a personalised short URL from provided inputs. See the documentation
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})