Customer engagement platform powering customer-centric interactions between consumers and brands in real-time
Go to siteThe Braze API allows you to automate your customer relationship management by engaging with users through various channels like email, push notifications, and in-app messages. By leveraging the Braze API on Pipedream, you can create customized, scalable workflows to streamline your marketing campaigns, user segmentation, and event tracking. With real-time data processing and the ability to connect with multiple services, Pipedream enhances the power of Braze, allowing for more dynamic and responsive user engagement strategies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
braze: {
type: "app",
app: "braze",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.braze.$auth.intance_domain}.braze.${this.braze.$auth.region}/catalogs`,
headers: {
Authorization: `Bearer ${this.braze.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})
Sync New Sign-ups to Braze: Automatically add new users from your app to Braze as soon as they sign up. Pair this with a welcome email campaign in Braze to engage users from day one.
User Segmentation Based on Activity: Send user behavior data from your app to Braze to segment users based on their in-app activity. Use these segments to trigger personalized marketing campaigns.
Real-time Event Response: Trigger messages or actions in Braze in response to real-time events from your app, like a purchase or a high-score achievement, to create timely and relevant user engagement.
Braze uses API keys for authentication. When you connect your Braze account, Pipedream securely stores the keys so you can easily authenticate to Braze APIs in both code and no-code steps.
Generate and copy your API Key from the Developer Console located in your dashboard.
To get the Instance Domain, refer to the Endpoints within Brazer's API documentation. For example, if your REST Endpoint is https://rest.iad-01.braze.com
, your Instance Domain is rest.iad-01