GetRequiredData

This section describes one of the fraud screening methods used in the development of fraud screening plugins that allow CloudBlue Commerce to integrate with third-party fraud screening systems. For more information, refer to Overview and How to Develop Fraud Screening Plugins.

Method naming convention

%PluginName%_GetRequiredData

Purpose

This method is used for CloudBlue Commerce to receive the list of data required for CheckCondition calls.

Mandatory / optional

This is one of the generic methods implemented optionally.

Input Parameters

None.

Return Parameters

  • required_data: an object of the \FraudSDK\RequiredData type that describes the dataset to be passed to the CheckCondition method.

Relationship with other methods

This method defines the input data for the CheckCondition method.

Implementation examples

Example 1. V&E plugin

function VNEDemo_GetRequiredData()
{
    return
        \FraudSDK\createRequiredData()
        ->requireCustomer()
        ->requireCustomerAttributes();
}

Example 2. Blacklist plugin

function BlacklistDemo_GetRequiredData()
{
    return
        \FraudSDK\createRequiredData()
        ->requireCustomer();
}
CloudBlue, an Ingram Micro business, uses cookies to improve the usability of our site. By continuing to use this site and/or logging in you are accepting the use of these cookies. For more information, visit our Privacy Policy.