Protect Plus for Android SDK

  Last updated: 

 

Protect Plus is a sophisticated counter-fraud service that provides your site with an extra layer of security against fraudulent transactions. It makes use of the industry’s largest negative database to perform a comprehensive suite of fraud assessments, including identity checks against the UK electoral roll and BT databases.

  Sign up for Protect Plus

Before you can get started, you will need to contact our Sales Team and enable Protect Plus on your account.

 

What checks are performed?

We analyse the customer’s billing, delivery and payment details using a rule-based system to detect suspicious patterns in user activity. Our system will assist you in deciding on whether to process a customer’s transaction based on the perceived level of risk. Checks performed include:

  • The industry’s largest negative database.
  • Neural-based fraud assessments.
  • Tumbling or Swapping, where there is an unusual usage pattern in the card number, expiration date or customer details associated with a transaction.

  Protect Plus does not guarantee against fraud

You should consider all data regarding a transaction before accepting the payment.

 

What happens after the checks are performed?

The Protect Plus system will analyse transaction details and issue one of the following fraudcontrolshieldstatuscode values:

  “ACCEPT” The details are not deemed suspicious.
  “CHALLENGE” Further investigation is recommended.
  “DENY” The details are suspicious and a transaction should not be performed.
  “NOSCORE” Transaction was declined by the acquirer before checks were performed.

 

Order of requests

Protect Plus checks are performed when a RISKDEC request is submitted to our system. There are two methods in which you can configure your system to process RISKDEC requests using our Mobile SDK:

  • RISKDEC then AUTH – Perform the checks first, then seek authorisation for the payment. By default, we suspend suspicious payments, allowing you to investigate them before proceeding.
  • AUTH then RISKDEC – Seek authorisation for the payment first, then perform the checks. Checks performed are more accurate because they take the results of AVSSecurity Code Checks and 3-D Secure into account.

 

Configuration of request

RISKDEC then AUTH request

Process overview

  1. When the customer clicks “Pay” on your checkout, the Drop-In View Controller submits a request to Trust Payments.
  2. Trust Payments checks the payment details and generates a shield status code.
  3. The customer is authenticated with 3-D Secure.
  4. Trust Payments contacts the acquiring bank to process the payment.
  5. Trust Payments returns the response JWT to your system. You will need to interpret the response.

  By default, when you opt to perform the RISKDEC before the AUTH, we automatically suspend authorised transactions when the fraudcontrolshieldstatuscode is “CHALLENGE” or “DENY”. This will allow you to investigate further and make a more informed choice on whether or not to authorise a suspicious transaction. This behaviour can be changed. Please contact the Support Team for further information.

 

Update the JWT payload

You will need to update the JWT payload to instruct our Mobile SDK to process a RISKDEC prior to performing a standard transaction. This is done by submitting requesttypedescriptions following the specification outlined below:

Field specification

  Field Format Description
X1-EN.png requesttypedescriptions List This must be set to [“RISKDEC”,”THREEDQUERY”,”AUTH”].

 

Payload example

{
"payload":{
"accounttypedescription":"ECOM",
"baseamount":"1050",
"currencyiso3a":"GBP",
"sitereference":"test_site12345",
"termurl":"https:\/\/payments.securetrading.net\/process\/payments\/mobilesdklistener",
"requesttypedescriptions":["RISKDEC","THREEDQUERY","AUTH"]
},
"iat":1559033849,
"iss":"jwt.user"
}

 

Handling the response

After the customer has completed the payment session, you will receive a single response JWT consisting of the RISKDEC, THREEDQUERY and AUTH responses.

  Every JWT returned from the SDK should be verified before continuing. We provide a parsing utility that makes it easier to convert the JWT to a transaction response object. Click here for an example on how to use this.

The most important response to check is that of the AUTH, the process in which the transaction is authorised by the issuing bank. Your system will need to ensure that the errorcode value returned for the AUTH is “0”, indicating success. If the AUTH has failed, the payment will be unsuccessful. In addition to checking the errorcode, your system should also perform the checks recommended in the Getting started section.

The following fields are returned in the RISKDEC response:

  Field Format Description
X4-EN.png fraudcontrolreference Alphanumeric (255) Unique reference to identify the Risk Decision check performed.
X4-EN.png fraudcontrolresponsecode Numeric (4) A numeric code that is mapped to further information on the results of the Risk Decision checks performed.
X4-EN.png fraudcontrolshieldstatuscode Alpha (10) One of the following values:
  • “ACCEPT” – The details are not deemed suspicious.
  • “CHALLENGE” – Further investigation is recommended.
  • “DENY” – The details are suspicious and a transaction should not be performed.
X2-EN.png rulecategoryflag Alphanumeric (255)

Reference used to identify a condition that was met to return the DENY or CHALLENGE fraudcontrolshieldstatuscode.

Only returned if checks are performed successfully.

X2-EN.png rulecategorymessage Not defined

Condition that was met to return the DENY or CHALLENGE fraudcontrolshieldstatuscode.

Only returned if checks are performed successfully.

AUTH then RISKDEC request

Process overview

  1. When the customer clicks “Pay” on your checkout, the Drop-In View Controller submits a request to Trust Payments.
  2. The customer is authenticated with 3-D Secure.
  3. Trust Payments contacts the acquiring bank to process the payment.
  4. Trust Payments checks the payment details and generates a shield status code.
  5. Trust Payments returns the response JWT to your system. You will need to interpret the response.

  If the shield status code is “CHALLENGE” or “DENY”, Trust Payments recommends that you update the AUTH to a suspended state (settle status “2”). This allows you to review the transaction and either opt to proceed by updating the settle status of the AUTH to “1” or to cancel by updating the settle status to “3”.

 

Update the JWT payload

You will need to update the JWT payload to instruct our Mobile SDK to process a RISKDEC following a standard transaction. This is done by submitting requesttypedescriptions following the specification outlined below:

Field specification

  Field Format Description
X1-EN.png requesttypedescriptions List This must be set to [“THREEDQUERY”,”AUTH”,”RISKDEC”]


Payload example

{
"payload":{
"accounttypedescription":"ECOM",
"baseamount":"1050",
"currencyiso3a":"GBP",
"sitereference":"test_site12345",
"termurl":"https:\/\/payments.securetrading.net\/process\/payments\/mobilesdklistener",
"requesttypedescriptions":["THREEDQUERY","AUTH","RISKDEC"]
},
"iat":1559033849,
"iss":"jwt.user"
}

 

Handling the response

After the customer has completed the payment session, you will receive a single response JWT consisting of the THREEDQUERY, AUTH and RISKDEC responses.

  Every JWT returned from the SDK should be verified before continuing. We provide a parsing utility that makes it easier to convert the JWT to a transaction response object. Click here for an example on how to use this.

  • When checking the THREEDQUERY and AUTH responses:
    • We recommend following the checks outlined on this page.
  • When checking the RISKDEC response:
    • It is important that this request is successful (check the errorcode is “0”).
    • Check the fraudcontrolshieldstatuscode – We recommend investigating instances where “CHALLENGE” and “DENY” are returned.
    • There are additional fields specific to Protect Plus that your system will need to check. These are described in the table below.
  Field Format Description
X4-EN.png fraudcontrolreference Alphanumeric (255) Unique reference to identify the Risk Decision check performed.
X4-EN.png fraudcontrolresponsecode Numeric (4) A numeric code that is mapped to further information on the results of the Risk Decision checks performed.
X4-EN.png fraudcontrolshieldstatuscode Alpha (10) One of the following values:
  • “ACCEPT” – The details are not deemed suspicious.
  • “CHALLENGE” – Further investigation is recommended.
  • “DENY” – The details are suspicious and a transaction should not be performed.
  • “NOSCORE” – Returned when a parent AUTH Request has been declined.
X2-EN.png rulecategoryflag Alphanumeric (255)

Reference used to identify a condition that was met to return the DENY or CHALLENGE fraudcontrolshieldstatuscode.

Only returned if checks are performed successfully.

X2-EN.png rulecategorymessage Not defined

Condition that was met to return the DENY or CHALLENGE fraudcontrolshieldstatuscode.

Only returned if checks are performed successfully.

 

Testing

We recommend that you thoroughly test your solution before enabling on your live Site Reference.
Click here for details that you can submit to simulate different RISKDEC responses on our test system.

Was this article helpful?
0 out of 0 found this helpful