Skip to content

Latest commit

 

History

History
78 lines (72 loc) · 4.79 KB

File metadata and controls

78 lines (72 loc) · 4.79 KB

UltracartClient::FraudRuleSearchRequest

Properties

Name Type Description Notes
affiliate_oid_or_email String Affiliate oid (integer) or affiliate email. Email is resolved to oid before searching. [optional]
amount_threshold_begin Float Lower bound on amount/score/percentage thresholds (rules backed by the same numeric column). [optional]
amount_threshold_end Float Upper bound on amount/score/percentage thresholds (rules backed by the same numeric column). [optional]
auto_note String Wildcard search on the rule's auto_note. Use '*' for wildcards. [optional]
count_threshold_begin Integer Lower bound on count thresholds (rules backed by the same integer count column). [optional]
count_threshold_end Integer Upper bound on count thresholds (rules backed by the same integer count column). [optional]
created_by String Filter to rules created by this user login. [optional]
created_date_begin String Rule creation date begin (MM/dd/yyyy) [optional]
created_date_end String Rule creation date end (MM/dd/yyyy) [optional]
credit_card_partial String Partial credit card number for matching 'credit card matches' rules. Use '*' wildcards. [optional]
decline_message String Wildcard search on the rule's decline_message. Use '*' for wildcards. [optional]
failure_action String [optional]
gateway_code String Filter to rules with this rotating transaction gateway code in their rotating_transaction_gateway_filters list. [optional]
merchant_item_id String Filter to rules with this merchant item id in their item_filters list. [optional]
modifier_value String Wildcard search on the rule's secondary modifier (eg 'address'/'subnet', gateway codes, avs match types). [optional]
modify_custom_field1 String Wildcard search on rules' modify_custom_field1 value. [optional]
modify_custom_field2 String Wildcard search on rules' modify_custom_field2 value. [optional]
modify_custom_field3 String Wildcard search on rules' modify_custom_field3 value. [optional]
modify_custom_field4 String Wildcard search on rules' modify_custom_field4 value. [optional]
modify_custom_field5 String Wildcard search on rules' modify_custom_field5 value. [optional]
modify_custom_field6 String Wildcard search on rules' modify_custom_field6 value. [optional]
modify_custom_field7 String Wildcard search on rules' modify_custom_field7 value. [optional]
modify_skip_affiliate Boolean Filter to rules whose modify_skip_affiliate flag matches this value. [optional]
modify_skip_affiliate_network_pixel Boolean Filter to rules whose modify_skip_affiliate_network_pixel flag matches this value. [optional]
rule_group String Rule group to filter by. [optional]
rule_type String Rule type to filter by. [optional]
search_linked_accounts Boolean Include rules from accounts linked to this merchant. Defaults to false. [optional]
storefront_hostname String Filter to rules with this storefront hostname in their screen_branding_theme_filters list. [optional]
text_value String Wildcard search on the rule's text parameter (email / ip / bin / country / item id / avs codes - the backend disambiguates by rule_type). [optional]
theme_code String Filter to rules with this screen branding theme code in their screen_branding_theme_filters list. [optional]
user_action String [optional]

Example

require 'ultracart_api'

instance = UltracartClient::FraudRuleSearchRequest.new(
  affiliate_oid_or_email: null,
  amount_threshold_begin: null,
  amount_threshold_end: null,
  auto_note: null,
  count_threshold_begin: null,
  count_threshold_end: null,
  created_by: null,
  created_date_begin: null,
  created_date_end: null,
  credit_card_partial: null,
  decline_message: null,
  failure_action: null,
  gateway_code: null,
  merchant_item_id: null,
  modifier_value: null,
  modify_custom_field1: null,
  modify_custom_field2: null,
  modify_custom_field3: null,
  modify_custom_field4: null,
  modify_custom_field5: null,
  modify_custom_field6: null,
  modify_custom_field7: null,
  modify_skip_affiliate: null,
  modify_skip_affiliate_network_pixel: null,
  rule_group: null,
  rule_type: null,
  search_linked_accounts: null,
  storefront_hostname: null,
  text_value: null,
  theme_code: null,
  user_action: null
)