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
| Field | Type | Required | Allowed values |
|---|---|---|---|
types | array of strings | yes | One or more of: "ix::" (raw card entry), "passthrough", "applePay", "googlePay", "clickToPay" |
comparator | string | yes | "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 theelsebranch or via the default connector.