Get Started¶
Note
If you use Repro’s SDK on native app’s WebView, Please ensure to implement this, not Repro Web.
Implement/Install Repro Web¶
Steps¶
Log in to account¶
When you first apply for Repro Web, you will receive an invitation email to the email address you contacted with. Please log in to the Repro Web dashboard from the “Check now” link in the email.

If other members of the company are already using Repro Web, those who have administrator authority can also invite other members to the account with the following step. SETTINGS on left of the screen > INVITE COLLABORATORS
Choose the method of implementation¶
Repro Web can be implemented with Google tag manager(GTM)
Although It has validated the operation of Google Tag Manager (GTM) and Yahoo Tag Manager (YTM), there is still an issue which is “The execution order of tags can not be controlled”, so we recommend implementation with Google Tag Manager(GTM).
The operation with other measurement tag managers have been validated, but please use them with confirming operation.
This manual introduces two ways to implement Repro Web as below.
Also, please contact us when one of the below-mentioned requirements applies. We will guide give you an instruction for suitable implementations.
Measure across multiple domains
implement to websites which have ASP service or cart system
Implement with Google Tag Manager(GTM)¶
This is a setting process for using Repro Web via Google Tag Manager(GTM).
INDEX¶
Obtain User Profiles¶
The following are the two ways to obtain User Profiles.
Basic programming skills may be required when setting up. Please share this manual with the appropriate person, such as your website administrator, to proceed with the setup.
1.Obtain via User Profile tracking tags on the website¶
Set up the user profile tracking tag and embed the value you want to obtain in the specified place.¶
Use the appropriate tag from the following tags according to the type of data type to be obtained.
Also in order to make sure the tag functions after the setup tag, please add it below to the setup tag in the HTML.
User Profile tracking tag (String)
<script>
reproio("setStringUserProfile", "男女", "ここに値を埋め込んでください");
reproio("setStringUserProfile", "会員ランク", "ここに値を埋め込んでください");
reproio("setStringUserProfile", "ログイン状態", "ここに値を埋め込んでください");
reproio("setStringUserProfile", "ニックネーム", "ここに値を埋め込んでください");
</script>
User Profile tracking tag (Integer)
<script>
reproio("setIntUserProfile", "年齢", "ここに値を埋め込んでください");
reproio("setIntUserProfile", "保有ポイント残高", "ここに値を埋め込んでください");
</script>
User Profile tracking tag (Date)
<script>
reproio("setDateUserProfile", "会員登録日", "ここに値を埋め込んでください");
reproio("setDateUserProfile", "お誕生日", "ここに値を埋め込んでください");
</script>
Add the User Profile tracking tag¶
Add the user profile tracking tag via GTM.
First, create the firing condition of the event by GTM’s trigger.
For example, if you want to obtain the membership information when the user views any of the pages while logged-in, the following settings are required.

Page View as the trigger type.Some Page Views button.ID , starts with , ID , like the following image.
Secondly, set up the tags.

Custom HTML as the tag type.
At this time, making the following two settings in the detailed tag settings are required.
Set to
Once per eventin Tag firing options.Set to Once per event in Tag firing options.

Finally, select the GTM trigger setup in the previous step, save it, and publish it on GTM.
2.Integrate the data directly from your own database and DMP to Repro Web with API¶
Basically, this method requires setting the user ID in the setup tracking tag.
You can directly register the attributes of users which are stored in your own database only and not presented on the website.
Based on the updated User Profile information using this API, you can send messages to fine-grained targets.
There are four types of APIs, so please consult with our support team to choose the appropriate one.
How to verify if the User Profile is working or not¶
Registered user profiles will be reflected on here: USER PROFILE on the left menu > USER PROFILE SETTINGS.
Check whether the data is correctly reflected here.
USER PROFILE > USER PROFILE SETTINGS 
If you want to verify whether the obtained value is as intended, go to ANALYTICS>ACCESS, select the specified value and check.

Note
Implement with directly embedding tag into the web page¶
This is a setting process for using Repro Web install directly on the web site by embed tags.
INDEX¶
Obtain User Profiles¶
The following are the two ways to obtain User Profiles.
Basic programming skills may be required when setting up. Please share this manual with the appropriate person, such as your website administrator, to proceed with the setup.
1.Obtain via User Profile tracking tags¶
Use the appropriate tag from the following tags according to the type of data type to be obtained.
Use the appropriate tag from the following tags according to the type of data type to be obtained.
Also in order to make sure the tag functions after the setup tag, please add it below to the setup tag in the HTML.
User Profile tracking tag(String)
<script>
reproio("setStringUserProfile", "男女", "ここに値を埋め込んでください");
</script>
User Profile tracking tag (Integer)
<script>
reproio("setIntUserProfile", "購入金額", "ここに値を埋め込んでください");
</script>
User Profile tracking tag (Date)
<script>
reproio("setDateUserProfile", "最終購入日", ココにnew Date()等の値を埋め込んでください);
</script>
2.Integrate the data directly from your own database and DMP to Repro Web with API¶
Basically, this method requires setting the user ID in the setup tracking tag.
This method requires setting the user ID in the setup tracking tag.
Not only information on the site but also user attribute information stored only in the company’s database can be registered directly in the user profile.
There are four types of APIs, so please consult with our support team to choose the appropriate one.
How to verify if the User Profile is working or not¶
Registered user profiles will be reflected on here: USER PROFILE on the left menu > USER PROFILE SETTINGS.
Check whether the data is correctly reflected here.
USER PROFILE on the left menu > USER PROFILE SETTINGS

If you want to verify whether the obtained value is as intended, go to ANALYTICS>ACCESS, select the specified value and check.

Note
Finally¶
This is the end of the implementation of Repro Web. Thank you for setting this up.
If you want to deliver Web Messages, go to MARKETING on the left > MESSAGING.

















