WhitelistItem
A whitelist (allow list) rule. Payments whose attributes match value for the given type bypass fraud checks (including the blacklist) before authorization.
Rules are scoped to the account that created them; MONEI also maintains a global list applied on top.
type WhitelistItem {
value: String!
type: WhitelistItemType!
note: String
accountId: ID
createdAt: String!
updatedAt: String
}
Fields
WhitelistItem.value ● String! non-null scalar
Value matched against incoming payments. Format depends on type (email address or session fingerprint).
WhitelistItem.type ● WhitelistItemType! non-null enum
Payment attribute this rule matches against.
WhitelistItem.note ● String scalar
Free-form note explaining why the rule was added.
WhitelistItem.accountId ● ID scalar
ID of the account that owns the rule.
WhitelistItem.createdAt ● String! non-null scalar
Creation date in ISO 8601 format.
WhitelistItem.updatedAt ● String scalar
Last update date in ISO 8601 format.
Returned By
addWhitelistItem mutation ● whitelistItem query
Member Of
WhitelistItemsConnection object