Card limit values
There are four selection options:
allow_all_except
allow_all
block_all
block_all_except
There are three different entities you can configure limits for:
mcc_list - Merchant category code ex 1711 - Air Conditioning, Heating, and Plumbing Contractors
mcc_list is defined as a range of mcc values. See examples
merchant_name_list - Merchant name i.e. Amazon.
Merchant names use value_has logic so "amazon" would select "amazon.com" or "amazon prime" or even "amazon river gift shop". See examples
merchant_id_list - AKA Merchant Identification Number (MID). This is number that uniquely identifies a particular merchant. For example 784959000762203
identifies Amazon.com. This configuration
merchant_id_list uses value_is logic. See examples
Examples
All three configured for allow_all_except
{
"card_auth_target_control": {
"allow_all_except": [
{
"mcc_list": [
{
"range": {
"from": "6011",
"through": "6012"
}
}
]
},
{
"merchant_id_list": [
{
"value_is":
["160146000762203","020014005912000"]
}
]
},
{
"merchant_name_list": [
{
"value_has": [
"Amazon",
"Amazon Prime"
]
}
]
}
]
}
}
/// All three configured for block_all
{
"card_auth_target_control": {
"allow_all_except": [
{
"mcc_list": [
{
"range": {
"from": "6011",
"through": "6012"
}
}
]
},
{
"merchant_id_list": [
{
"value_is":
["160146000762203","020014005912000"]
}
]
},
{
"merchant_name_list": [
{
"value_has": [
"Amazon",
"Amazon Prime"
]
}
]
}
]
}
}
Two MCC ranges defined
{
"card_auth_target_control": {
"allow_all_except": [
{
"mcc_list": [
{
"range": {
"from": "6011",
"through": "6012"
}
}
]
},
{
"mcc_list": [
{
"range": {
"from": "7011",
"through": "7012"
}
}
]
},
{
"merchant_id_list": [
{
"value_is":
["160146000762203","020014005912000"]
}
]
},
{
"merchant_name_list": [
{
"value_has": [
"Amazon",
"Amazon Prime"
]
}
]
}
]
}
}