Skip to main content

BlacklistItemType

Blacklist rule kind. Determines which payment attribute the rule's value is matched against.

  • email - Match the customer/billing/shipping email (case-insensitive).
  • phone - Match the customer/billing/shipping phone (normalized to E.164 before comparison).
  • ip - Match the payer's session IP address (exact match).
  • card - Match a card identifier. NOTE: not enforced at payment-validation time; use card_fingerprint instead.
  • card_fingerprint - Match the stable card fingerprint produced by MONEI for the PAN. Same physical card produces the same fingerprint across charges, so blocking one fingerprint blocks every future attempt with that card.
  • session_fingerprint - Match the device/browser fingerprint captured at checkout (SessionDetails.fingerprint). Blocks attempts coming from the same device.
  • country - Match the payer's session country (ISO 3166-1 alpha-2, geolocated from IP).
enum BlacklistItemType {
email
phone
ip
card
card_fingerprint
session_fingerprint
country
}

Values

BlacklistItemType.email

BlacklistItemType.phone

BlacklistItemType.ip

BlacklistItemType.card

BlacklistItemType.card_fingerprint

BlacklistItemType.session_fingerprint

BlacklistItemType.country

Member Of

BlacklistItem object ● BlacklistItemInput input ● blacklistItems query