How-To Guide
This guide will walk you through the essential setup steps for integrating Renumerate with your subscription business.
How To Find Your Brand Private Key (X-Brand-Key)
Section titled “How To Find Your Brand Private Key (X-Brand-Key)”Your Brand Private Key is required for API authentication when generating session IDs from your backend.
Step 1: Access Brand Settings
Section titled “Step 1: Access Brand Settings”- Go to studio.renumerate.com
- In the top left corner, click on your brand name to open the dropdown
- Select “Brand Settings” from the dropdown menu
Step 2: Reveal Your Private Key
Section titled “Step 2: Reveal Your Private Key”- Scroll down to the bottom of the Brand Settings page
- Look for the “Reveal Secret Key” button
- Click the button to display your private key
- Copy the key for use in your backend API calls
Step 3: Secure Your Private Key
Section titled “Step 3: Secure Your Private Key”Best practices for key management:
- Store the key in environment variables (e.g.,
RENUMERATE_PRIVATE_KEY
) - Never commit the key to version control
- Restrict access to the key to authorized team members only
- Rotate the key periodically for enhanced security
Using Your Private Key
Section titled “Using Your Private Key”Include your private key in the X-Brand-Key
header when making API requests:
const response = await fetch("https://api.renumerate.com/v1/retention/session", { method: "POST", headers: { "Content-Type": "application/json", "X-Brand-Key": process.env.RENUMERATE_PRIVATE_KEY, // Your private key here }, body: JSON.stringify(requestBody),});
How To Change Brand Colors
Section titled “How To Change Brand Colors”Customize the appearance of your retention flows and subscription hub to match your brand identity.
Step 1: Access Brand Settings
Section titled “Step 1: Access Brand Settings”- Go to studio.renumerate.com
- In the top left corner, click on your brand name to open the dropdown
- Select “Brand Settings” from the dropdown menu
Step 2: Customize Your Colors
Section titled “Step 2: Customize Your Colors”- Scroll halfway down the Brand Settings page
- You will see the “Colors” section with customizable color options
- Update the colors to match your brand
Step 3: Apply Changes
Section titled “Step 3: Apply Changes”What gets customized:
- Retention Flow modals - Background, buttons, and text colors
- Subscription Hub interface - All UI elements match your brand
- Cancel buttons - Styled according to your color scheme
Color Guidelines
Section titled “Color Guidelines”For the best user experience, consider these recommendations:
- Contrast: Ensure sufficient contrast between text and background colors
- Accessibility: Choose colors that are accessible to users with visual impairments
- Brand consistency: Use colors that align with your existing brand guidelines
- Readability: Test colors across different devices and lighting conditions