Upsells are banners that display short messages that focus on promoting an action or upgrading something the user already has.

⚠️ Please note: Upsell is not currently supported in dark mode.

Give $30, get $60 in ads credit

Earn $60 of ads credit, and give $30 of ads credit to a friend

Upsell Props

Upsell subcomponent props
Name
Type
Default
message
Required
string
-

Main content of Upsell, explains what is being offered or recommended. Content should be localized. See Best Practices for more info.

children
typeof Upsell.Form
-

To create forms within Upsell, pass Upsell.Form as children

dismissButton
{| accessibilityLabel: string, onDismiss: () => void, |}
-

Adds a dismiss button to the Upsell. The accessibilityLabel should follow the Accessibility guidelines

imageData
{| component: typeof Image | typeof Icon, width?: number, mask: { rounding: "circle" | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8, wash: boolean} |}
-

Either an Icon or an Image to render at the start of the banner. Width is not used with Icon. Image width defaults to 128px. See the Icon and Image variants for more info.

primaryAction
{| accessibilityLabel: string, disabled?: boolean, href?: string, label: string, onClick?: AbstractEventHandler<| SyntheticMouseEvent<HTMLButtonElement> | SyntheticMouseEvent<HTMLAnchorElement> | SyntheticKeyboardEvent<HTMLAnchorElement> | SyntheticKeyboardEvent<HTMLButtonElement>, {| dangerouslyDisableOnNavigation: () => void |}
-

Main action for people to take on Upsell. If href is supplied, the action will serve as a link. See OnLinkNavigationProvider to learn more about link navigation.'
If no href is supplied, the action will be a button.
The accessibilityLabel should follow the Accessibility guidelines.

secondaryAction
{| accessibilityLabel: string, disabled?: boolean, href?: string, label: string, onClick?: AbstractEventHandler<| SyntheticMouseEvent<HTMLButtonElement> | SyntheticMouseEvent<HTMLAnchorElement> | SyntheticKeyboardEvent<HTMLAnchorElement> | SyntheticKeyboardEvent<HTMLButtonElement>, {| dangerouslyDisableOnNavigation: () => void |}
-

Secondary action for people to take on Upsell. If href is supplied, the action will serve as a link. See OnLinkNavigationProvider to learn more about link navigation.'
If no href is supplied, the action will be a button.
The accessibilityLabel should follow the Accessibility guidelines.

title
string
-

Brief title summarizing the Upsell. Content should be localized.

Upsell.Form Props

Upsell.Form subcomponent props
Name
Type
Default
children
Required
React.Node
-

Contents of the form, typically inputs like TextField(s).

onSubmit
Required
({| event: SyntheticMouseEvent<HTMLButtonElement> | SyntheticKeyboardEvent<HTMLButtonElement> | SyntheticMouseEvent<HTMLAnchorElement> | SyntheticKeyboardEvent<HTMLAnchorElement> |}) => void
-

Actions to perform when the form has been submitted.

submitButtonAccessibilityLabel
Required
string
-

Label for the submit button used for screen readers. Should follow the Accessibility guidelines.

submitButtonText
Required
string
-

Content of the submit button.

submitButtonDisabled
boolean
-

Disables the submit button when true.

Usage guidelines

When to Use
  • Displaying promotional information to a user that is not tied to a task or state on the surface.
  • Sharing updates or changes to the features and offerings of the product.
When Not to Use
  • Anything related to state or status within the surface. Consider a Callout instead.
  • Promoting or highlighting specific elements / areas within a surface. Let the team know if this is needed.

Best practices

Give $30, get $60 in ads credit

Earn $60 of ads credit, and give $30 of ads credit to a friend
Do

Use Upsells for marketing new products or encouraging upgrades.


Give $30, get $60 in ads credit

Earn $60 of ads credit, and give $30 of ads credit to a friend
Do

Place Upsell at the top of the page under the primary navigation when possible.

First Upsell:

Measure ad performance

Install the Pinterest tag to track your website traffic, conversions and more.
Follow-up Upsell:

So close! Finish installing your Pinterest tag, get $10 in ads credit

Track ads conversion—sales, traffic and more—with the Pinterest tag
Do

Plan for the timing of your Upsells with new product launches. Try to create different messages for each time an Upsell appears to the user.

Could not link account

There was a problem connecting your account.
Don't

Use Upsells for critical information, such as errors or warnings. Use Callout instead. Upsells should not be used for general information either.


So close! Finish installing your Pinterest tag, get $10 in ads credit

Track ads conversion—sales, traffic and more—with the Pinterest tag

Give $30, get $60 in ads credit

Earn $60 of ads credit, and give $30 of ads credit to a friend
Don't

Stack Upsells on a page. In the case that they must be stacked, Callouts will appear above Upsells.

Measure ad performance

Install the Pinterest tag to track your website traffic, conversions and more.

Measure ad performance

Install the Pinterest tag to track your website traffic, conversions and more.
Don't

Keep showing the same Upsell once it has been dismissed. Upsells should only appear a maximum of 2 times to the same user, as they have diminishing returns.

Accessibility

Labels

dismissButton, primaryAction, secondaryAction, and submitButtonAccessibilityLabel each require a short, descriptive label for screen readers, which should also be localized.

In the case of action Buttons or Links, alternative text should be provided through the accessibilityLabel prop to replace vague text like "Visit" or "Learn more" with more descriptive information, like "Learn more about work from home resources". Avoid using the words "button" or "link" in the label, as this becomes repetitive. If the action text is already descriptive, an empty string can be passed.

For the dismissButton IconButton, the label provided should indicate the intent, like “Dismiss this banner”.

The Image or Icon supplied to imageData should only supply an alt or accessibilityLabel, respectively, if the Image or Icon supplies extra context or information. Icons in Upsells are often purely decorative, and can therefore have an empty string as the accessibilityLabel.

Give $30, get $60 in ads credit

Earn $60 of ads credit, and give $30 of ads credit to a friend

Localization

Remember to localize all link or button labels, as well as title and message.

Fast fertig! Beenden Sie die Installation Ihres Pinterest-Tags und erhalten Sie ein Guthaben von 10 Euro

Verfolgen Sie die Anzeigenkonvertierung - Umsatz, Traffic und mehr - mit dem Pinterest Tag

Variants

Text-only

Used to convey a short message that requires no action, except dismiss.

Single line Upsell with no title or call to action.

Icon

The Icon is used to add additional meaning to the Upsell. The icon can reference a Pinterest product, feature or an action from our Icon library.

Give $30, get $60 in ads credit

Earn $60 of ads credit, and give $30 of ads credit to a friend

Image

The Image in Upsell is used to add visual interest and draw the user’s attention. Images should relate to the message of the Upsell. Upsell images should use approved photography or be illustrations using our brand colors. Images will always be 128px wide.

Stay healthy and safe

Check out our resources for adapting to these times.

Actions

Upsells can have either one primary action, or a primary action and a secondary action. These actions can be buttons, when no href is supplied, or links, by specifying the href property.

Upsell actions with link interaction can be paired with OnLinkNavigationProvider. See OnLinkNavigationProvider to learn more about link navigation.

For example, “Learn more” may link to a separate documentation site, while “Send invite” could be a button that opens a Modal with an invite flow. Be sure to localize the labels of the actions.

If needed, actions can become disabled after clicking by setting disabled: true in the action data.

Give $30, get $60 in ads credit

Earn $60 of ads credit, and give $30 of ads credit to a friend

Forms

Inputs can be added to Upsells to collect information from users (ex: name or email) through the use of Upsell.Form. Most Upsells should have no more than 2 inputs. If more inputs are needed, direct users to a full page using the primaryAction.

Single TextField

Give $30, get $60 in ads credit

Earn $60 of ads credit, and give $30 of ads credit to a friend
Multiple TextFields
Succulent plant against pink background

Interested in a free ads consultation?

Learn how to grow your business with a Pinterest ads expert today!

Callout
Use Callout when communicating critical information, such as an error or warning. Callout can also be used to present the user with general information and further actions they can take, like the successful creation of a business account.

Toast
Toast provides feedback on a user interaction, like a confirmation that appears when a Pin has been saved. Unlike Upsell and Callout, Toasts don’t contain actions. They’re also less persistent, and disappear after a certain duration.

OnLinkNavigationProvider
OnLinkNavigationProvider allows external link navigation control across all children components with link behavior.

ActivationCard
ActivationCards are used in groups to communicate a user’s stage in a series of steps toward an overall action.