Documentation
Feedback
Guides
VTEX IO Apps

VTEX IO Apps
Advanced components
Availability Notify
Official extension
Version: 1.12.2
Latest version: 1.12.2

The Availability Notify component is responsible for showing a subscription form when a product SKU is not available. The form lets customers subscribe to get notified when that item gets restocked.

{"base64":"  ","img":{"width":1729,"height":823,"type":"png","mime":"image/png","wUnits":"px","hUnits":"px","length":487279,"url":"https://user-images.githubusercontent.com/67270558/132012045-06c65073-2692-4827-b08a-7be5730b6422.png"}}

The app records the notification request and monitors inventory updates. This way, once the requested SKU gets back in stock, the app will email the shoppers who asked to be notified.

Configuration

  1. Install the Availability Notify app in the desired VTEX account by running vtex install vtex.availability-notify in your terminal.

  2. Open your store’s Store Theme app directory in your code editor.

  3. Open your app's manifest.json file and add the Availability Notify app under the peerDependencies field.

Warning

Due to changes in its peer dependencies you will need to release a new major version. Check the documentation on How to migrate CMS settings after a theme major update.


_10
"peerDependencies": {
_10
"vtex.availability-notify": "1.x"
_10
}

  1. Add the availability-notify component block to your PDP in your store theme (store.product). For example:

_10
{
_10
"store.product": {
_10
"children": [
_10
"availability-notify"
_10
]
_10
},

  1. Once you have added the availability-notify component, access your store's Admin.
  2. Go to Extensions Hub > Installed Apps > Availability Notifier. You can also find it using the search bar on the top of the page.
  3. Then, you will see the app's settings:

{"base64":"  ","img":{"width":2021,"height":895,"type":"png","mime":"image/png","wUnits":"px","hUnits":"px","length":53550,"url":"https://user-images.githubusercontent.com/47258865/177632798-1aa3b247-10fe-45e2-93a2-73527c19c0f9.png"}}

Setting fieldDescription
Verify AvailabilityRuns a shipping simulation to verify that the item can be shipped to the shopper before sending a notificaiton.
Marketplace to NotifyAllows a seller account to specify a comma separated list of marketplace account names to notify of inventory updates.
Download RequestsDownload an XLS file of all recquest records.
Process UnsentProcess all unsent requests and download an XLS file of the results.

After making the desired settings in the app, set up its template according to your necessities. Check out more details about it in the next section, Customizing the Back in stock template.

Seller Configuration

This app needs to also be installed on the seller account

  1. Install the Availability Notify app in the desired VTEX SELLER account through the app store
  2. In the app configuration enter the name of the marketplace to notify when there are any inventory changes

This will forward the inventory change to the MARKETPLACE and then trigger the Back In Stock email to the subscribed users of that product.

Customizing the Back in stock template

Once you have installed the app, you can customize the email template to send to the shoppers who asked to be notified.

  1. Find the email template, named BACK IN STOCK, in your store's Admin in Customer > Message center > Templates.
  2. Search for the availability-notify component template, named BACK IN STOCK and click on it.
  3. After, you will see the email template and its configuration. For example:

{"base64":"  ","img":{"width":1874,"height":852,"type":"gif","mime":"image/gif","wUnits":"px","hUnits":"px","length":10053661,"url":"https://user-images.githubusercontent.com/67270558/131547198-a4eb3f0e-5a20-4e63-9f1f-d3bb312fa621.gif"}}

To edit the email template's field, check the documentation on How to create and edit transactional email templates, and you will notice the JSON Data field, which is responsible for adding variables that allow you to dynamically add data to the email. These variables are JSON properties, and you can see more details about them in Get SKU and context and in Including order variables in email template.

JSON Data examples will only appear in templates when you complete the desired action in your store. If you have not transacted an order, recurrence or any other action, JSON Data will appear blank. NOTE: notification email is only triggered when on the master workspace

Searching and Processing Availability Notify data

This app uses Master Data V2, to search for stored data you should use Master Data API - v2 endpoints with the variables data_entity_name and schema with the value notify.

If you want to run the services manually you can use the two endpoints below: (An authentication token is required)

  • To process Unsent Requests: https://app.io.vtex.com/vtex.availability-notify/v1/{{accountName}}/master/_v/availability-notify/process-unsent-requests

  • To process All Requests: https://app.io.vtex.com/vtex.availability-notify/v1/{{accountName}}/master/_v/availability-notify/process-all-requests

Check out the Open API Schemas repository containing several VTEX Postman Collections including Master Data API - v2.

Customization

In order to apply CSS customizations to this and other blocks, follow the instructions given in the recipe on Using CSS Handles for store customization.

CSS Handles
notiferContainer
title
notifyLabel
form
content
input
inputName
inputEmail
submit
sucess
error
See also
VTEX App Store
VTEX IO Apps