{"title":"Examples of transaction rules","category":"default","creationDate":1571779440,"content":"<p>On this page we show use cases and examples of how to create the corresponding transaction rules.<\/p>\n<h2 id=\"processing-types\">Set processing types<\/h2>\n<p>Decline payments based on from which channel it is processed.<\/p>\n<h3 id=\"examples-processing-types\">Example<\/h3>\n<p>Only allow payments from a point-of-sale terminal.<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Only allow point-of-sale payments'\" :id=\"''\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n  \\\"interval\\\": {\\n    \\\"type\\\": \\\"perTransaction\\\"\\n  },\\n  \\\"ruleRestrictions\\\": {\\n    \\\"processingTypes\\\" : {\\n      \\\"operation\\\": \\\"noneMatch\\\",\\n      \\\"value\\\": [\\\"pos\\\"]\\n    }\\n  },\\n  \\\"type\\\" : \\\"blockList\\\",\\n  \\\"outcomeType\\\": \\\"hardBlock\\\"\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<p>When an ecommerce payment is processed, the transaction meets the condition and is therefore declined.<\/p>\n<p>If you want to do the opposite, which is to allow all transactions except for point-of-sale, change the <code>operation<\/code> to <span translate=\"no\"><strong>anyMatch<\/strong><\/span>. When a point-of-sale payment is processed, the transaction meets the condition and is therefore declined.<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Block point-of-sale payments'\" :id=\"''\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n  \\\"interval\\\": {\\n    \\\"type\\\": \\\"perTransaction\\\"\\n  },\\n  \\\"ruleRestrictions\\\": {\\n    \\\"processingTypes\\\" : {\\n      \\\"operation\\\": \\\"anyMatch\\\",\\n      \\\"value\\\": [\\\"pos\\\"]\\n    }\\n  },\\n  \\\"type\\\" : \\\"blockList\\\",\\n  \\\"outcomeType\\\": \\\"hardBlock\\\"\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<h2 id=\"country-and-mcc\">Set country and merchant category codes (MCC)<\/h2>\n<p>Decline transactions based on specific combinations of the country\/region and merchant category codes (MCCs).<\/p>\n<h3 id=\"example-country-mcc\">Example<\/h3>\n<p>Decline payments in the US except for grocery stores (5411), restaurants (5812), and fast food (5814) purchases.<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Only allow transactions from specific MCCs in the US'\" :id=\"'country-mcc'\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n  \\\"interval\\\": {\\n    \\\"type\\\": \\\"perTransaction\\\"\\n  },\\n  \\\"ruleRestrictions\\\": {\\n    \\\"countries\\\" : {\\n      \\\"operation\\\": \\\"anyMatch\\\",\\n      \\\"value\\\": [\\\"US\\\"]\\n    },\\n    \\\"mccs\\\" : {\\n      \\\"operation\\\": \\\"noneMatch\\\",\\n      \\\"value\\\": [\\\"5411\\\", \\\"5812\\\", \\\"5814\\\"]\\n    }\\n  },\\n  \\\"type\\\" : \\\"blockList\\\",\\n  \\\"outcomeType\\\": \\\"hardBlock\\\"\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<h2 id=\"usage\">Set a total amount or number of transactions<\/h2>\n<p>Decline transactions when the amount or number of transactions  exceeds a certain value.<\/p>\n<h3 id=\"examples-max-amount-usage\">Example<\/h3>\n<p>Decline transactions when the amount exceeds USD 100 per transaction.<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Set a limit of USD 100 per payment'\" :id=\"'max-amount'\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n  \\\"interval\\\": {\\n    \\\"type\\\": \\\"perTransaction\\\"\\n  },\\n  \\\"ruleRestrictions\\\": {\\n    \\\"totalAmount\\\" : {\\n      \\\"operation\\\": \\\"greaterThan\\\",\\n      \\\"value\\\": {\\n        \\\"value\\\": 10000,\\n        \\\"currency\\\": \\\"USD\\\"\\n      }\\n    }\\n  },\\n  \\\"type\\\" : \\\"velocity\\\",\\n  \\\"outcomeType\\\": \\\"hardBlock\\\"\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<p>Here is an example of setting a limit of up to 50 transactions per month, with the counter resetting on the 15th of every month.<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Up to 50 transactions per month'\" :id=\"'max-transactions'\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n  \\\"interval\\\": {\\n    \\\"type\\\": \\\"rolling\\\",\\n    \\\"dayOfMonth\\\": 15,\\n    \\\"duration\\\" : {\\n        \\\"unit\\\" : \\\"months\\\",\\n        \\\"value\\\" : 1\\n    }\\n  },\\n  \\\"ruleRestrictions\\\": {\\n    \\\"matchingTransactions\\\" : {\\n      \\\"operation\\\": \\\"greaterThan\\\",\\n      \\\"value\\\": 50\\n    }\\n  },\\n  \\\"type\\\" : \\\"velocity\\\",\\n  \\\"outcomeType\\\": \\\"hardBlock\\\"\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<h2 id=\"usage-per-country-mcc\">Combine amount and number of transactions with the MCC and country<\/h2>\n<p>Decline transactions when the amount or number of transactions exceeds a certain value over a time period for the specific countries\/regions or MCCs.<\/p>\n<h3 id=\"example-combination\">Example<\/h3>\n<p>Decline gas or fuel refill-related payments in the US and Canada if they exceed 10 transactions per month or if the total amount exceeds USD 500.<\/p>\n<p>To implement this use case, you need to create two rules: one for the maximum amount and another one for the maximum number of payments.<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Up to USD 500 per month for gas station purchases in US and CA'\" :id=\"'max-amount-per-country'\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n  \\\"interval\\\": {\\n    \\\"type\\\": \\\"rolling\\\",\\n    \\\"dayOfMonth\\\": 1,\\n    \\\"duration\\\" : {\\n      \\\"unit\\\" : \\\"months\\\",\\n      \\\"value\\\" : 1\\n    }\\n  },\\n  \\\"ruleRestrictions\\\": {\\n    \\\"countries\\\" : {\\n      \\\"operation\\\": \\\"anyMatch\\\",\\n      \\\"value\\\": [\\\"US\\\", \\\"CA\\\"]\\n    },\\n    \\\"mccs\\\": {\\n      \\\"operation\\\": \\\"anyMatch\\\",\\n      \\\"value\\\": [\\\"5541\\\",\\\"5542\\\",\\\"7538\\\"]\\n    },\\n    \\\"totalAmount\\\" : {\\n      \\\"operation\\\": \\\"greaterThan\\\",\\n      \\\"value\\\": {\\n        \\\"value\\\": 50000,\\n        \\\"currency\\\": \\\"USD\\\"\\n      }\\n    }\\n  },\\n  \\\"type\\\" : \\\"velocity\\\",\\n  \\\"outcomeType\\\": \\\"hardBlock\\\"\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Up to 10 transactions per month for gas station purchases in US and CA'\" :id=\"'max-transactions-per-country'\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"\\n{\\n \\\"interval\\\": {\\n   \\\"type\\\": \\\"rolling\\\",\\n   \\\"dayOfMonth\\\": 1,\\n   \\\"duration\\\" : {\\n     \\\"unit\\\" : \\\"months\\\",\\n     \\\"value\\\" : 1\\n   }\\n },\\n \\\"ruleRestrictions\\\": {\\n   \\\"countries\\\" : {\\n     \\\"operation\\\": \\\"anyMatch\\\",\\n     \\\"value\\\": [\\\"US\\\", \\\"CA\\\"]\\n   },\\n   \\\"mccs\\\": {\\n     \\\"operation\\\": \\\"anyMatch\\\",\\n     \\\"value\\\": [\\\"5541\\\",\\\"5542\\\",\\\"7538\\\"]\\n   },\\n   \\\"matchingTransactions\\\" : {\\n     \\\"operation\\\": \\\"greaterThan\\\",\\n     \\\"value\\\": 10\\n   }\\n },\\n \\\"type\\\" : \\\"velocity\\\",\\n \\\"outcomeType\\\": \\\"hardBlock\\\"\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<p>When a payment meets the conditions of either of the two rules, the payment is declined.<\/p>\n<h2>Set limits for international transactions<\/h2>\n<p>Decline international transactions when the amount exceeds the specified limit.<\/p>\n<h3>Example<\/h3>\n<p>Block international transactions when the total amount exceeds EUR&nbsp;50 per day for the payment instrument.<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Up to EUR 50 for international transactions per day'\" :id=\"''\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n   \\\"interval\\\": {\\n    \\\"type\\\": \\\"rolling\\\",\\n    \\\"timeZone\\\": \\\"Europe\\\/Amsterdam\\\",\\n    \\\"timeOfDay\\\": \\\"00:00:00\\\",\\n    \\\"duration\\\": {\\n        \\\"unit\\\": \\\"days\\\",\\n        \\\"value\\\": 1\\n    }\\n  },\\n  \\\"entityKey\\\": {\\n    \\\"entityType\\\": \\\"PaymentInstrument\\\",\\n    \\\"entityReference\\\": \\\"PI322LZ2233WMJ5F6SDBS45FD\\\"\\n  },\\n  \\\"ruleRestrictions\\\": {\\n    \\\"totalAmount\\\": {\\n      \\\"operation\\\": \\\"greaterThan\\\",\\n      \\\"value\\\": {\\n        \\\"currency\\\": \\\"EUR\\\",\\n        \\\"value\\\": 5000\\n      }\\n    },\\n    \\\"internationalTransaction\\\": {\\n      \\\"operation\\\": \\\"equals\\\",\\n      \\\"value\\\": true\\n    }\\n  },\\n  \\\"type\\\": \\\"velocity\\\",\\n  \\\"outcomeType\\\": \\\"hardBlock\\\"\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<h2>Set limits for a sliding time window<\/h2>\n<p>Decline transactions when the amount exceeds a certain value over a specified time window.<\/p>\n<h3 id=\"example-amount-sliding\">Example<\/h3>\n<p>Decline a transaction if the total accumulated amount for the whole balance platform when the total amount exceeds EUR&nbsp;2000 in the last 12 hours.<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Up to EUR 2000 in the last 12 hours'\" :id=\"''\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n  \\\"entityKey\\\": {\\n    \\\"entityReference\\\": \\\"YOUR_BALANCE_PLATFORM\\\",\\n    \\\"entityType\\\": \\\"BalancePlatform\\\"\\n  },\\n  \\\"aggregationLevel\\\": \\\"balancePlatform\\\",\\n  \\\"interval\\\": {\\n    \\\"type\\\": \\\"sliding\\\",\\n     \\\"duration\\\":\\n     {\\n         \\\"value\\\": \\\"12\\\",\\n         \\\"unit\\\": \\\"hours\\\"\\n      }\\n  },\\n  \\\"ruleRestrictions\\\": {\\n    \\\"totalAmount\\\": {\\n      \\\"operation\\\": \\\"greaterThan\\\",\\n      \\\"value\\\": {\\n        \\\"value\\\": 200000,\\n        \\\"currency\\\": \\\"EUR\\\"\\n      }\\n    }\\n  },\\n  \\\"type\\\": \\\"velocity\\\",\\n  \\\"outcomeType\\\": \\\"hardBlock\\\"\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<h2>Set a daily limit for a balance account<\/h2>\n<p>Decline transactions when the total amount for all payment instruments in a balance account exceeds a specified limit.<\/p>\n<h3 id=\"example-amount-daily-limit\">Example<\/h3>\n<p>Decline a transaction if the total accumulated amount for a balance account exceeds EUR&nbsp;1000 within a day. Reset the counter daily at 00:00 Europe\/Amsterdam time.<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Up to EUR 1000 per day for a balance account'\" :id=\"''\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n  \\\"type\\\": \\\"velocity\\\",\\n  \\\"interval\\\": {\\n    \\\"type\\\": \\\"rolling\\\",\\n    \\\"timeZone\\\": \\\"Europe\\\/Amsterdam\\\",\\n    \\\"timeOfDay\\\": \\\"00:00:00\\\",\\n    \\\"duration\\\":\\n    {\\n        \\\"unit\\\": \\\"days\\\",\\n        \\\"value\\\": 1\\n    }\\n  },\\n  \\\"entityKey\\\":\\n  {\\n    \\\"entityType\\\": \\\"BalanceAccount\\\",\\n    \\\"entityReference\\\": \\\"BA3229G223222B59QDFRVGR3X\\\"\\n  },\\n  \\\"aggregationLevel\\\": \\\"balanceAccount\\\",\\n  \\\"ruleRestrictions\\\":\\n    {\\n      \\\"totalAmount\\\":{\\n        \\\"operation\\\": \\\"greaterThan\\\",\\n        \\\"value\\\": {\\n          \\\"value\\\": 100000,\\n          \\\"currency\\\": \\\"EUR\\\"\\n        }\\n    },\\n \\\"outcomeType\\\": \\\"hardBlock\\\"\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<h2>Set a weekly limit for ATM withdrawals<\/h2>\n<p>Decline ATM withdrawals when the total amount withdrawn from ATMs exceed the specified limit.<\/p>\n<h3 id=\"example-amount-weekly-limit-atms\">Example<\/h3>\n<p>Decline an ATM withdrawal if the total amount withdrawn from an ATM exceeds EUR&nbsp;2000 every two weeks for the whole balance platform. Reset the counter every Monday at 00:00 Europe\/Amsterdam time.<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Up to EUR 2000 every two weeks for ATM withdrawals'\" :id=\"''\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n  \\\"entityKey\\\": {\\n    \\\"entityReference\\\": \\\"YOUR_BALANCE_PLATFORM\\\",\\n    \\\"entityType\\\": \\\"BalancePlatform\\\"\\n  },\\n  \\\"interval\\\": {\\n    \\\"type\\\": \\\"rolling\\\",\\n    \\\"timeZone\\\": \\\"Europe\\\/Amsterdam\\\",\\n    \\\"dayOfWeek\\\": \\\"Monday\\\",\\n    \\\"timeOfDay\\\": \\\"00:00:00\\\",\\n    \\\"duration\\\": {\\n        \\\"unit\\\": \\\"weeks\\\",\\n        \\\"value\\\": 2\\n    }\\n  },\\n  \\\"ruleRestrictions\\\": {\\n    \\\"processingTypes\\\": {\\n      \\\"operation\\\": \\\"anyMatch\\\",\\n      \\\"value\\\": [\\\"atmWithdraw\\\"]\\n    },\\n    \\\"totalAmount\\\": {\\n      \\\"operation\\\": \\\"greaterThan\\\",\\n      \\\"value\\\": {\\n        \\\"value\\\": 200000,\\n        \\\"currency\\\": \\\"EUR\\\"\\n      }\\n    }\\n  },\\n  \\\"type\\\": \\\"velocity\\\"\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<h2>Increase score of a payment instrument<\/h2>\n<p>Increase the score of a payment instrument when a payment meets the conditions.<\/p>\n<h3 id=\"increase-score-timeofday\">Example<\/h3>\n<p>Increase the score by 30 when a transaction happens between 11AM to 6PM Europe\/Amsterdam time.<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Increase score by 30 for transactions between 11AM to 6PM'\" :id=\"''\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n  \\\"interval\\\": {\\n    \\\"type\\\": \\\"perTransaction\\\"\\n  },\\n  \\\"entityKey\\\": {\\n    \\\"entityType\\\": \\\"PaymentInstrument\\\",\\n    \\\"entityReference\\\": \\\"PI322VJ223222B5F8CRBP5MH3\\\"\\n  },\\n  \\\"ruleRestrictions\\\": {\\n    \\\"timeOfDay\\\": {\\n      \\\"operation\\\": \\\"equals\\\",\\n       \\\"value\\\": {\\n         \\\"startTime\\\": \\\"10:00:00+01:00\\\",\\n         \\\"endTime\\\": \\\"17:00:00+01:00\\\"\\n       }\\n    }\\n  },\\n  \\\"type\\\": \\\"blockList\\\",\\n  \\\"outcomeType\\\": \\\"scoreBased\\\",\\n  \\\"score\\\": 30\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<h2>Decrease score of a payment instrument<\/h2>\n<p>Decrease the score of a payment instrument when a payment meets the conditions.<\/p>\n<h3 id=\"increase-score-timeofday\">Example<\/h3>\n<p>Decrease the score by 25 when a payment is made through a token.<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Decrease score by 25 for token transactions'\" :id=\"''\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n  \\\"interval\\\": {\\n    \\\"type\\\": \\\"perTransaction\\\"\\n  },\\n  \\\"entityKey\\\": {\\n    \\\"entityType\\\": \\\"PaymentInstrument\\\",\\n    \\\"entityReference\\\": \\\"PI322LZ2236D5J5F5SD5R2TRB\\\"\\n  },\\n  \\\"ruleRestrictions\\\": {\\n    \\\"processingTypes\\\": {\\n      \\\"operation\\\": \\\"anyMatch\\\",\\n      \\\"value\\\": [\\\"token\\\"]\\n    }\\n  },\\n  \\\"type\\\": \\\"blockList\\\",\\n  \\\"outcomeType\\\": \\\"scoreBased\\\",\\n  \\\"score\\\": -25\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>","url":"https:\/\/docs.adyen.com\/pt\/issuing\/authorisation\/transaction-rules\/examples","articleFields":{"description":"See examples of use cases and how they are defined as transaction rules.","feedback_component":true,"last_edit_on":"04-04-2022 15:21","parameters":{"directoryPath":"\/issuing"}},"algolia":{"url":"https:\/\/docs.adyen.com\/pt\/issuing\/authorisation\/transaction-rules\/examples","title":"Examples of transaction rules","content":"On this page we show use cases and examples of how to create the corresponding transaction rules.\nSet processing types\nDecline payments based on from which channel it is processed.\nExample\nOnly allow payments from a point-of-sale terminal.\n\n    \n\nWhen an ecommerce payment is processed, the transaction meets the condition and is therefore declined.\nIf you want to do the opposite, which is to allow all transactions except for point-of-sale, change the operation to anyMatch. When a point-of-sale payment is processed, the transaction meets the condition and is therefore declined.\n\n    \n\nSet country and merchant category codes (MCC)\nDecline transactions based on specific combinations of the country\/region and merchant category codes (MCCs).\nExample\nDecline payments in the US except for grocery stores (5411), restaurants (5812), and fast food (5814) purchases.\n\n    \n\nSet a total amount or number of transactions\nDecline transactions when the amount or number of transactions  exceeds a certain value.\nExample\nDecline transactions when the amount exceeds USD 100 per transaction.\n\n    \n\nHere is an example of setting a limit of up to 50 transactions per month, with the counter resetting on the 15th of every month.\n\n    \n\nCombine amount and number of transactions with the MCC and country\nDecline transactions when the amount or number of transactions exceeds a certain value over a time period for the specific countries\/regions or MCCs.\nExample\nDecline gas or fuel refill-related payments in the US and Canada if they exceed 10 transactions per month or if the total amount exceeds USD 500.\nTo implement this use case, you need to create two rules: one for the maximum amount and another one for the maximum number of payments.\n\n    \n\n\n    \n\nWhen a payment meets the conditions of either of the two rules, the payment is declined.\nSet limits for international transactions\nDecline international transactions when the amount exceeds the specified limit.\nExample\nBlock international transactions when the total amount exceeds EUR&nbsp;50 per day for the payment instrument.\n\n    \n\nSet limits for a sliding time window\nDecline transactions when the amount exceeds a certain value over a specified time window.\nExample\nDecline a transaction if the total accumulated amount for the whole balance platform when the total amount exceeds EUR&nbsp;2000 in the last 12 hours.\n\n    \n\nSet a daily limit for a balance account\nDecline transactions when the total amount for all payment instruments in a balance account exceeds a specified limit.\nExample\nDecline a transaction if the total accumulated amount for a balance account exceeds EUR&nbsp;1000 within a day. Reset the counter daily at 00:00 Europe\/Amsterdam time.\n\n    \n\nSet a weekly limit for ATM withdrawals\nDecline ATM withdrawals when the total amount withdrawn from ATMs exceed the specified limit.\nExample\nDecline an ATM withdrawal if the total amount withdrawn from an ATM exceeds EUR&nbsp;2000 every two weeks for the whole balance platform. Reset the counter every Monday at 00:00 Europe\/Amsterdam time.\n\n    \n\nIncrease score of a payment instrument\nIncrease the score of a payment instrument when a payment meets the conditions.\nExample\nIncrease the score by 30 when a transaction happens between 11AM to 6PM Europe\/Amsterdam time.\n\n    \n\nDecrease score of a payment instrument\nDecrease the score of a payment instrument when a payment meets the conditions.\nExample\nDecrease the score by 25 when a payment is made through a token.\n\n    \n","type":"page","locale":"pt","boost":16,"hierarchy":{"lvl0":"Home","lvl1":"Adyen Issuing","lvl2":"Payment authorisation","lvl3":"Use transaction rules","lvl4":"Examples of transaction rules"},"hierarchy_url":{"lvl0":"https:\/\/docs.adyen.com\/pt","lvl1":"https:\/\/docs.adyen.com\/pt\/issuing","lvl2":"https:\/\/docs.adyen.com\/pt\/issuing\/authorisation","lvl3":"https:\/\/docs.adyen.com\/pt\/issuing\/authorisation\/transaction-rules","lvl4":"\/pt\/issuing\/authorisation\/transaction-rules\/examples"},"levels":5,"category":"Issuing","category_color":"green","tags":["Examples","transaction","rules"]}}
