Skip to main content
Aria Knowledge Central

Implement the Aria PCI JavaScript Tag

Overview

The Aria JavaScript tag ensures that electronic storage, processing, and/or transmission of any cardholder data is handled completely by Aria. Once inserted, it searches for an HTML form with the ID “AriaPay” and overwrites the action with a defined URL and method to POST.

The defined URLs that Aria uses are as follows:

  • US -  https://secure.ariasystems.net/api/direct_post_eom.php
  • Europe -  https://secure.prod.cph.ariasystems.net/api/direct_post_eom.php

By inserting the appropriate JavaScript tag in the footer of your cardholder data page(s), Aria controls the URL of the payment post and the corresponding processing. Cardholder data is captured and transmitted by Aria—through the JavaScript tag—and not by you or by your website’s third-party host.

Implementing the Aria PCI JavaScript Tag

To achieve optimal page load results, it is ideal that the JavaScript tag is placed in the footer of your cardholder data pages, although the tag may also be placed in the header or before the <body> tag, if necessary.

javascript-footer.png

The JavaScript tag differs between Aria environments, so please be sure to insert the appropriate tag based on the environment as described below.

Aria Stage Future Environment

Insert the below JavaScript tag in the footer of your website's cardholder data pages. This tag is specific to the Aria Stage Future environment:

<script src="https://secure.future.stage.ariasystems.net/api/ariaCHD_EOM.js"></script>
<script language="javascript">
          aria.environmentId ="future.stage";
</script>

Aria Production Environment

Insert the below JavaScript tag in the footer of your website's cardholder data pages. This tag is specific to the Aria Production environment:

<script src="https://secure.ariasystems.net/api/ariaCHD_EOM.js"></script>
<script language="javascript">
          aria.environmentId ="prod";
</script>

Aria Copenhagen Stage Future Environment

Insert the below JavaScript tag in the footer of your website's cardholder data pages. This tag is specific to the Aria Copenhagen Stage Future environment:

<script src="https://secure.future.stage.cph.ariasystems.net/api/ariaCHD_EOM.js"></script>
<script language="javascript">
          aria.environmentId ="future.stage.cph";
</script>

Aria Copenhagen Production Environment

Insert the below JavaScript tag in the footer of your website's cardholder data pages. This tag is specific to the Aria Copenhagen Production environment:

<script src="https://secure.cph.ariasystems.net/api/ariaCHD_EOM.js"></script>
<script language="javascript">
          aria.environmentId ="prod.cph";
</script>
  • Was this article helpful?