Serial number with file download
Last updated
Last updated
In some cases, it may be helpful to tie a serial number with a file download. For example, you may want customers who register with specific serial numbers to have access to their product's instruction manual PDF after registration. This can enhance the customer experience by providing immediate access to important documents.
First, you will need to prepare the serial number CSV but with an extra column called data.
The new CSV will have the following format.
|serialNumber | sku | customerTags | data_download_Manual |
| SN12345678 | MERC | new,vip | https://example.com/merc_manual.pdf |
| SN12345678 | VOLVO | new | https://example.com/volvo_manual.pdf |
The data_download_Manual
column should contain the URL link to the PDF file itself. The text Manual will be displayed as the link name on the frontend.
Once the serial number CSV is uploaded to the app, you will need to enable the display of serial number data on the frontend. To do this, navigate to App admin > App Settings > General and enable the option Show registered serial numbers data for registered products. Finally, click Save Settings at the bottom.
When customers register with a specific serial number, they will see the download link in their registered products. By default, registered products are displayed on the registration page if the customer is logged in and has registered products. Alternatively, registered products can be shown on the account page. For more details, please refer to the Registration in Account documentation.