Skip to main content

CreditCardTokenType

Matches transactions whose card token type is (or is not) in a configured list — useful for routing Apple Pay / Google Pay / Click to Pay tokens differently from raw card numbers. Shown as "Credit Card: Token Type" in the condition catalogue.

Parameters

FieldTypeRequiredAllowed values
typesarray of stringsyesOne or more of: "ix::" (raw card entry), "passthrough", "applePay", "googlePay", "clickToPay"
comparatorstringyes"in" or "notin"

Example

{
"constraint": "CreditCardTokenType",
"params": {
"types": ["applePay", "googlePay"],
"comparator": "in"
}
}

Notes

  • Availability: might not be included in your platform package — if this condition is missing from the catalogue returned by List routing constraints, contact your Customer Success Manager to have it activated.
  • Identifiers are case-sensitive — use the exact spelling above.
  • "in" conditions never match transactions that carry no token information. Do not rely on "notin" conditions to match such transactions — handle them in the else branch or via the default connector.