Fee Type Configuration Parameters
There are multiple ways in which fees can be applied on the Platform:
Directly to Entities - Applied to individual Merchants or Referrers
Using Groups - Applied to a group of Merchant or Referrer entities.
Per Transaction - Applied to Entities or Groups as each transaction is processed. (Fee Listener)
Now that you’re familiar with the Fee Structure and available setup options, we’ll get started by setting up the Fee type of your choice using your preferred method.
Tip: If you are familiar with basic fee structure information, jump ahead to the Setting up a Fee section below.
Getting Started
Before you begin, it’s important to understand the makeup of a Fee configuration and the various components used to create the Fee setup exactly to your specifications.
Each section below covers the major components of setting up a fee with all available customizations and refinements. Each of these major steps is provided with a Portal setup guide and an API setup guide to offer instructions for your preferred platform usage method:
Setting up a Fee - Learn the process of how and where to set up a Fee.
Fee Type Setups - Learn the specific parameters required to set specific types of Fees.
Adding Fee Rules - Learn the process of adding Fee rules to further refine Fee Schedule (Trigger) criteria.
Prerequisites
To ensure your experience is streamlined, make sure you’re familiar with the following information:
Fee Types - The different categories of fees that can be created and charged.
Fee Structure - Overview of the basic layout for a Fee configuration.
Fee Schedules - Available time or event-based triggers used to initiate a Fee charge.
Fee Rules - Options to further refine the criteria of the Fee Schedule.
Fee Modifiers - Options to redirect the Fee collection flow and who will pay the Fee.
Fee Collection Process - Overview of how Fee payments are collected and where they can be found.
Warnings
Review the following warnings before you begin to avoid issues and potential legal complications:
Warning: Do not create or apply Surcharges as legal complications can occur. Visa and MasterCard specifically prohibit the application of Surcharges to cardholders on their card brand networks respectively.
Warning: Convenience Fees can only be charged to customers using an alternative payment method (e.g. a website instead of in-person or mail/telephone orders)
Tips
The following tips will provide you with extra insight useful to the process:
Tip: If you’re unsure of how much to charge for specific fee types, refer to the Visa and MasterCard card brand network guidelines
Setting up a Fee
This quick overview will demonstrate the steps necessary to begin setting up the Fee configuration of your choice. For simplicity, this will serve as the foundation to set up all Fee Types. Each Fee Type will be covered in its own section with additional context added where necessary.
Using the Portal
Step 1: Navigate to the Merchants page, located under Management.
Step 2: Click the Merchant you want to charge the Fee to enter its Merchant Profile page.
Step 3: In the Merchant Profile, click Fees from the left-hand menu. Then, click the ADD FEES button to reveal the Add Fee lightbox.
Step 4: Jump to the Fee Type of your choice below for the parameters required in the Add Fee lightbox.
Step 1: Navigate to the Groups page (located under Management).
Step 2: Select the Group the fee will be applied to from the page list or create a new Group with the ADD GROUP button and select the desired Merchant(s) from the list. Then, enter the Group’s Profile page.
Step 3: In the Group Profile, select Fees from the left-hand menu. Then, click the ADD FEES button to reveal the Add Fee lightbox.
Step 4: Jump to the Fee Type of your choice below for the parameters required in the Add Fee lightbox.
Follow the steps in the applicable content above if you wish to apply this fee for an individual Merchant entity or to a Group [of Merchants]. Continue from Step 4.
Step 5: Check the Transaction Fee checkbox to enable the Fee to be charged on a per-transaction basis.
Using the API
As the API request offers the ability to set up all types of fees using the same call, we’ll provide the initial API reference information so you just have to change a few parameters (provided in each setup below)
Request URL & Headers |
CODE
|
The Request and Response bodies will use the same parameters for each Fee Type setup. We’ll provide you with an example request body and parameter descriptions so you’ll know what to change in the following setup steps.
In this basic example, we’re setting up a $15.00 Platform Account Overdraft Fee.
This actual fee ("type": 1
) will be paid by one entity (Referrer) on behalf of another (Merchant) when that (Merchant's) entity's available balance is overdrafted ("schedule": 12
).
We’ve applied this setting to that Merchant’s entire Group (org
) so all other Merchants assigned to the same Group will have the same Fee configuration applied to them.
{
"type": "1",
"schedule": 12,
"um": 2,
"currency": "USD",
"txnFee": "0",
"inactive": "0",
"frozen": "0",
"entity": "t1_ent_1xxxxxxxxxxxxx",
"forentity": "t1_ent_2xxxxxxxxxxxxx",
"org": "t1_org_xxxxxxxxxxxxxx",
"name": "Example Fee",
"description": "Example Fee for platform account overdraft.",
"scheduleFactor": 0,
"start": 20231111,
"finish": 0,
"collection": "1",
"collectionFactor": 0,
"collectionOffset": 0,
"collectionIncludeCurrent": 0,
"amount": "1500"
}
Parameter | Type | Required | Description | Valid Values |
---|---|---|---|---|
| string | Required | The entity ID for the entity the Fee is being applied to. |
|
| string | Optional | The Org ID for the group the Fee is being applied to. Note: Leaving this field blank will apply the fee directly to the Merchant instead of their associated group overall. |
|
| integer | Required | The Type of Fee | Valid Values:
|
| string | Optional | Custom name for the Fee. |
|
| string | Optional | Custom secondary description of the Fee. |
|
| integer | Required | The Fee trigger. | Valid Values:
|
| string | Required | A multiplier that you can use to adjust the schedule set in the 'schedule' field, if it is set to a duration-based trigger, such as daily, weekly, monthly, or annually. | Format: |
| string | Required | The date that the Fee will take effect. | Format: |
| integer | Required | Applies the fee based on the volume of a resource. | Valid Values:
|
| integer | Required | A multiplier that you can use to adjust the set of data to be used in the collection calculation. | Format: |
| string | Required | The number of days, weeks, months or years to go back when selecting data for collection calculation. | Format: Whole numerical values. Example: |
| integer | Required | The unit of measure for this Fee. Warning: Percentage and Surcharge units will only apply to Fee schedules set to trigger from monetary events, such as an authorization, capture, or refund. | Valid Values:
|
| string | Required | The three-digit symbol for the currency that the Fee will be charged and collected in. | Valid Values:
|
| integer | Required | Indicator to extract fee from txn supplied fee. When set, amount will correspond to the fee amount in the txn and only that amount will be extractable, anything over that amount will not be extracted. | Valid Values:
|
| integer | Required | Whether or not this fee is active. | Valid Values:
|
| integer | Required | Whether or not this fee is temporarily frozen. | Valid Values:
|
In the response, we see the new Fee ID (the id
parameter) which can be used to later change or recall the fee when necessary. You’ll now also see new information about who created the Fee configuration and when (e.g. created
& creator
).
{
"id": "t1_fee_xxxxxxxxxxxxxx",
"created": "2023-10-25T19:10:44.278Z",
"modified": "2023-10-25T19:10:44.278Z",
"creator": "t1_log_xxxxxxxxxxxxxx",
"modifier": "t1_log_xxxxxxxxxxxxxx",
"entity": "t1_ent_1xxxxxxxxxxxxx",
"forentity": "t1_ent_2xxxxxxxxxxxxx",
"org": "t1_org_xxxxxxxxxxxxxx",
"type": "1",
"name": "Example Fee",
"description": "Example Fee for platform account overdraft.",
"schedule": "12",
"scheduleFactor": 0,
"start": 20231111,
"finish": 0,
"collection": "1",
"collectionFactor": 0,
"collectionOffset": 0,
"collectionIncludeCurrent": 0,
"um": "2",
"amount": "1500",
"currency": "USD",
"txnFee": "0",
"inactive": "0",
"frozen": "0"
}
Parameter | Type | Description | Valid Values |
---|---|---|---|
| string | The ID of the newly created Fee. |
|
| string | The Date and Time that the Fee was created. |
|
| string | The Date and Time that the Fee was last modified. |
|
| string | The Login ID for the user that created the Fee. |
|
| string | The Login ID for the user that last modified the Fee. |
|
| string | The entity ID for the entity the Fee is being applied to. |
|
| string | The Org ID for the group the Fee is being applied to. |
|
| integer | The type of Fee being charged to the entity. | Valid Values:
|
| string | Custom name for the Fee. |
|
| string | Custom secondary description of the Fee. |
|
| integer | The Fee trigger. | Valid Values:
|
| string | A multiplier that you can use to adjust the schedule set in the 'schedule' field, if it is set to a duration-based trigger, such as daily, weekly, monthly, or annually. | Format: |
| string | The date that the Fee will take effect. | Format: |
| integer | Applies the fee based on the volume of a resource. | Valid Values:
|
| integer | A multiplier that you can use to adjust the set of data to be used in the collection calculation. | Format: |
|
| Whether to include the current period for the colleciton calculation. | Valid Values:
|
| integer | The unit of measure for this Fee. Warning: Percentage and Surcharge units will only apply to Fee schedules set to trigger from monetary events, such as an authorization, capture, or refund. | Valid Values:
|
| string |
|
|
| string |
|
|
| string | The three-digit symbol for the currency that the Fee will be charged and collected in. | Valid Values:
|
| integer | Indicator to extract fee from txn supplied fee. When set, amount will correspond to the fee amount in the txn and only that amount will be extractable, anything over that amount will not be extracted. | Valid Values:
|
| integer | Whether or not this fee is active. | Valid Values:
|
| integer | Whether or not this fee is temporarily frozen. | Valid Values:
|
Fee Type Setups
In the Fee Type Setup steps below, we’ll simply include the required parameter settings necessary to enable that particular Fee Type. Additional context and information will be provided within each section.
Choose the Fee Type you’d like to set:
Boarding Fees - Fees collected from your Merchants as they board the platform.
Chargeback/Dispute Fees - Fees collected for managing Merchants’ dispute responses.
Convenience Fees - Fees collected from Cardholders for alternative payment method acceptance.
External Fees - Fees collected for services provided outside of the platform such as Visa Fixed Acquirer Network Fee (FANF), Visa Integrity Fees, and MasterCard Merchant Location Fees or Value-Added Services like OmniToken and SaferPayments.
Interchange & Processing Fees - Fees collected to reimburse Interchange and other costs assessed by the processor and/or card brands.
Platform Service Fees - Fees collected for custom Platform Service enablement
Risk Decision Fees - Fees collected for triggering automated Risk Decisions on an entity.
Risk Service Fees - Fees collected for performing a Risk Policy check on an entity at a cost.
Surcharge Fees - Fees collected from cardholders by Merchants as an additional charge, usually to cover specific costs associated with the transaction, such as platform transaction fees.
Transaction Fees - Fees collected when transactions are authorized and/or captured.
Boarding Fees
This customization allows our partners to seamlessly implement a portfolio-wide or individual new account creation fee to collect from their clients.
Example: As a Facilitator, you would like to charge a Fee to your Referrers for boarding Merchants and to that Referrer’s Merchants whenever they board Sub-Merchants. This Fee allows the Facilitator to generate revenue from Merchant boarding under their portfolio, even if the Merchant ultimately has little or no activity after boarding.
Add Fee Parameter | Required Value | Note |
---|---|---|
When to trigger the fee? | Board | The Fee triggers when the Merchant is boarded. |
How much is the fee? | Actual | |
Amount | {yourFeeAmount} | The numerical fee amount, written in basis points to represent a dollar amount (Example: |
Fee Start Date | {yourStartDate} | It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
Add Fee Parameter | Required Value | Note |
---|---|---|
|
| Fee. A Standard Fee. |
|
| Board. The Fee triggers when the Merchant is boarded |
|
| No schedule factor is needed ( |
|
| Fixed Amount. The Fee is a fixed amount, specified in the 'amount' field as an integer in cents. This is called “Actual” in the Portal Add Fee lightbox. |
| {yourFeeAmount} | The numerical fee amount, written in basis points to represent a dollar amount (Example: |
| {yourStartDate} |
It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
|
| US Dollars. CAD is also accepted. |
|
| Disabled Transaction Fee |
|
| |
|
| No Collection Factor |
|
| No Collection Offset |
|
| Active |
|
| Not Frozen |
Chargeback Fees
Chargeback Fees (also known as Dispute Fees) are fees set and charged to Merchants by Referrers for offering the platform to process the Chargeback.
Example: A Merchant has received an initial dispute opening the chargeback process, also known as Retrieval. When a Chargeback Fee is configured and “Retrieval” is chosen as the Fee Schedule (Trigger) ("schedule": 19
) , the Merchant will now be assessed a fee when the Chargeback Cycle is opened and Dispute Stage is “Retrieval”
Begin by following the steps in the Setting up a Fee section under the Using the Portal steps and use the parameters below to complete the process.
Add Fee Parameter | Required Value | Note |
---|---|---|
When to trigger the fee? | Chargeback | This fee triggers when a first chargeback dispute stage is reached against a Merchant. You can also use the following options for different Chargeback cycles:
|
How much is the fee? | Actual | |
Amount | {yourFeeAmount} | The numerical fee amount, written in basis points to represent a dollar amount (Example: |
Fee Start Date | {yourStartDate} | It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
This Fee is now configured to trigger to charge a Merchant whenever a Chargeback is created (First Chargeback Dispute Stage).
Add Fee Parameter | Required Value | Note |
---|---|---|
|
| Fee. A Standard Fee. |
| | Chargeback. The Fee triggers when a first chargeback dispute stage is reached against a Merchant. You can also use the following options for different Chargeback cycles:
|
|
| |
|
| Fixed Amount. The Fee is a fixed amount, specified in the 'amount' field as an integer in cents. This is called “Actual” in the Portal Add Fee lightbox. |
| {yourFeeAmount} | The numerical fee amount, written in basis points to represent a dollar amount (Example: |
| {yourStartDate} |
It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
|
| US Dollars. CAD is also accepted. |
|
| Disabled Transaction Fee |
|
| Txn-Merchant. The total amount of all transactions per entity. |
|
| No Collection Factor |
|
| No Collection Offset |
|
| Active |
|
| Not Frozen |
This Fee is now configured to trigger to charge a Merchant whenever a Chargeback is created (First Chargeback Dispute Stage).
Convenience Fees
Convenience Fees are fees set and charged by Merchants to Cardholders for the “alternative” payment method acceptance. “Alternative” refers to the non-primary payment methods provided by Merchants to Cardholders. This Convenience Fee amount is then charged to the Merchant by the Referrer, based on the Referrer’s Fee Modifier settings.
Example: A Merchant that typically accepts in-person payments and over-the-phone/mail order. The Cardholder requests to make a payment using the Merchant’s website to send a card-not-present payment. As the website is not the primary method accepted by the Merchant, they can charge a Convenience Fee to the Cardholder.
Begin by following the steps in the Setting up a Fee section under the Using the Portal steps and use the parameters below to complete the process.
Warning: Convenience Fees can cause legal complications if configured incorrectly or not meeting the general card brand network requirements:
Convenience Fees must be disclosed to customer before completion of a transaction.
You must allow cardholders to cancel the transaction upon reading this disclosure.
Convenience Fees are only allowed for credit and signature debit card types.
Convenience Fees are only allowed for card-not-present transaction types.
Convenience fees cannot be applied to recurring, subscription or installment transactions.
Add Fee Parameter | Required Value | Note |
---|---|---|
When to trigger the fee? | Capture |
|
How much is the fee? | Actual |
Percentage or Surcharge may not be used in any form of Transaction Fee configuration. |
Amount | {yourFeeAmount} | The numerical fee amount, written in basis points to represent a dollar amount (Example: |
Fee Start Date | {yourStartDate} | It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
Transaction Fee | Enabled | Checkbox available under the “Advanced Options” section of the lightbox. |
Warning: Convenience Fees can cause legal complications if configured incorrectly or not meeting the general card brand network requirements:
Convenience Fees must be disclosed to customer before completion of a transaction.
You must allow cardholders to cancel the transaction upon reading this disclosure.
Convenience Fees are only allowed for credit and signature debit card types.
Convenience Fees are only allowed for card-not-present transaction types.
Convenience fees cannot be applied to recurring, subscription or installment transactions.
Add Fee Parameter | Required Value | Note |
---|---|---|
|
| Fee. A Standard Fee. |
|
| Capture. The Fee triggers at the capture time of a Transaction. |
|
| No schedule factor is needed ( |
|
| Fixed Amount. The Fee is a fixed amount, specified in the 'amount' field as an integer in cents. This is called “Actual” in the Portal Add Fee lightbox. |
| {yourFeeAmount} | The numerical fee amount, written in basis points to represent a dollar amount (Example: |
| {yourStartDate} |
It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
|
| US Dollars. CAD is also accepted. |
|
| Enabled as a Transaction Fee |
|
| |
|
| No Collection Factor |
|
| No Collection Offset |
|
| Active |
|
| Not Frozen |
External Fees
External Fees are fees that are assessed from external platforms, such as Visa’s Fixed Acquirer Network Fee (FANF) or MasterCard Merchant Location (MC Location), to a Referrer for the usage of those services. In scenarios where Referrers would like to charge a Merchant to cover the costs of those fees. In some cases, you may want to charge a markup for providing the service through your platform to your Merchants.
Example: A Referrer is enrolled in both MasterCard Merchant Location (MC Location) and Visa Fixed Acquirer Network Fee (FANF) programs for its Merchants to improve interchange rates and reduce fraud. As both of these programs assess Fees to the Referrer based on each individual Merchant’s information (such as number of locations, online-only, etc.) the Referrer would like to charge 100% of the external services’ costs to the Merchant, or could even assess a 102.5% (as an example) for a small markup percentage for enabling the external service.
Add Fee Parameter | Required Value | Note |
---|---|---|
When to trigger the fee? | {externalService} | Any of the following values are supported as External Fees:
|
How much is the fee? | Actual |
Percentage or Surcharge may not be used in any form of Transaction Fee configuration. |
Amount | {yourFeeAmount} | The numerical fee amount, written in basis points to represent a dollar amount (Example: |
Fee Start Date | {yourStartDate} | It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
External Fees use their own unique endpoint to set up the fee configuration.
Request URL & Header |
CODE
|
{
"entity": "t1_ent_xxxxxxxxxxxx",
"filename": "string",
"date": 0,
"type": "FANF",
"lineNumber": 0,
"amount": "string",
"metadata": []
}
Parameter | Type | Required | Description | Valid Values |
---|---|---|---|---|
| string | Required | The ID of the Entity the External Fee will be charged to. | |
| string | Required | The name of the original WorldPay Ecomm file containing the fee charged by external services. | Max: 100 Characters |
| integer | Required | Date when this fee was processed by the external service and charged in the WorldPay Ecomm file. | Format: |
| string | Required | The external service Fee type |
|
| integer | Required | The | Max: 10 Characters |
| string | Required | The numerical fee amount, written in basis points to represent a dollar amount to charge the Merchant. | Format Example: |
| data object | Required | The original Worldpay EComm fee data provided by the external service to the platform to charge the applicable entity (Referrer) the original fee for usage. | Format: JSON only. |
{
"id": "t1_ext_xxxxxxxxxxxx",
"entity": "t1_ent_xxxxxxxxxxxx",
"filename": "FANFFee.ecomm",
"date": 20231023,
"type": "FANF",
"lineNumber": 0,
"amount": "250",
"metadata": "string.json",
"created": "2023-10-25T19:10:44.278Z",
"modified": "2023-10-25T19:10:44.278Z",
"creator": "t1_log_xxxxxxxxxxx",
"modifier": "t1_log_xxxxxxxxxxx"
}
Parameter | Type | Description | Valid Values |
---|---|---|---|
| string | The newly created External Fee ID. | |
| string | The ID of the Entity the External Fee will be charged to. | |
| string | The name of the original WorldPay Ecomm file containing the fee charged by external services. | |
| integer | Date when this fee was processed by the external service and charged in the WorldPay Ecomm file. | Format: |
| string | Fee type |
|
| integer | The | |
| string | The percentage amount, written in basis points. | Format Example: |
| json object | The original Worldpay EComm fee data provided by the external service to the platform to charge the applicable entity (Referrer) the original fee for usage. | |
| timestamp | The date and time the new External Fee was created. | Format: |
| timestamp | The date and time this External Fee was last modified. | Format: |
| string | The Login ID for the user that created this External Fee | |
| string | The Login ID for the user that last modified this External Fee |
Interchange & Processing Fees
If you want to pass along these to your merchants you can set up an Interchange fee schedule at 100% so that they are responsible for covering the fees.
Example: A Referrer would like to pass along the cost of acceptance for debit and credit card interchange to your Merchant.
Add Fee Parameter | Required Value | Note |
---|---|---|
When to trigger the fee? | Interchange | The Fee triggers based on the interchange type of this Merchant. |
How much is the fee? | Percentage | |
Amount | 100.00 | The numerical fee amount, written in basis points to represent a percentage. |
Fee Start Date | {yourStartDate} | It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
Conditional Rules - Debit Network Interchange Fees
In order to properly assess debit network interchange fees, you must configure the following conditional Rule settings under the “Advanced Options” section of the Add Fee modal:
Conditional Rule | Required Value | Note |
---|---|---|
Payment Card Type is: | Debit | This helps the fee engine differentiate between credit interchange and debit interchange costs. |
Payment Card Brand is: | {Debit - [Network]} | Valid Values:
|
Add Fee Parameter | Required Value | Note |
---|---|---|
|
| Fee. A Standard Fee. |
|
| The Fee triggers when interchange default are assessed for the Transactions of this Merchant. You can also create a fee based on the specific type of processor using the Processor option:
|
|
| No schedule factor is needed ( |
|
| Fixed Amount. The Fee is a fixed amount, specified in the 'amount' field as an integer in cents. This is called “Actual” in the Portal Add Fee lightbox. |
| {yourFeeAmount} | The numerical fee amount, written in basis points to represent a dollar amount (Example: |
| {yourStartDate} |
It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
|
| US Dollars. CAD is also accepted. |
|
| Disabled Transaction Fee |
|
| |
|
| No Collection Factor |
|
| No Collection Offset |
|
| Active |
|
| Not Frozen |
Platform Service Fees
This customization allows our partners to seamlessly implement a portfolio-wide or individual new account creation fee to collect from their clients. creating a custom platform service fee in Payrix is an ideal way to automatically bill your clients for your services based on your user agreement with them.
Example: The payment acceptance platform you offer as a Referrer comes at a cost to the Merchant, usually in the form of monthly service plan costs or subscription costs. As the Merchant has agreed to your platform’s terms and conditions, it accepts the costs setup as a Monthly Fee Schedule eliminating the need for a third-party billing solution.
Add Fee Parameter | Required Value | Note |
---|---|---|
When to trigger the fee? | Months | The Fee triggers every X number of months.
|
Every how many monthly? | 1 | This sets the interval to as recurring once per month. This can also be changed to be bi-monthly (2), quarterly (3), or semi-anually (6) as examples. |
How much is the fee? | Actual | |
Amount | {yourFeeAmount} | The numerical fee amount, written in basis points to represent a dollar amount (Example: |
Fee Start Date | {yourStartDate} | It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
Fee Name | {yourBusinessName} Platform Service Fee | Optional. This will help more easily identify your Fee when viewing the Portal. |
Add Fee Parameter | Required Value | Note |
---|---|---|
|
| Fee. A Standard Fee. |
|
| Months. The Fee is charged every month. You can also use the following Fee Schedules:
|
|
| This sets the interval to as recurring once per month. This can also be changed to be bi-monthly ( |
|
| Fixed Amount. The Fee is a fixed amount, specified in the 'amount' field as an integer in cents. This is called “Actual” in the Portal Add Fee lightbox. |
| {yourFeeAmount} | The numerical fee amount, written in basis points to represent a dollar amount (Example: |
| {yourStartDate} |
It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
|
| US Dollars. CAD is also accepted. |
|
| Disabled Transaction Fee |
|
| Txn-Merchant. The total amount of all transactions per entity. |
|
| No Collection Factor |
|
| No Collection Offset |
|
| Active |
|
| Not Frozen |
Risk Decision Fees
Risk Decision Fees allow you to charge fees to a Merchant when core platform risk services are used to evaluate when a risk decision is made for a boarding Merchant or when a processed Transaction has risk checks performed to ensure compliance.
Example: A Referrer would like to charge a Merchant when the platform risk service performs an automated transaction check. This happens when specific risk criteria are met and delay the disbursement of transaction funds in addition to fraud and risk compliance concerns. As a result, the Referrer will charge a fee when these events occur to actively discourage the Merchant from high-risk transaction actions and behaviors
Add Fee Parameter | Required Value | Note |
---|---|---|
When to trigger the fee? | Internal Decision V2 | Payrix automated Risk decision services. You can also use the following options for different supported Risk Services: Valid Values:
|
How much is the fee? | Actual | |
Amount | {yourFeeAmount} | The numerical fee amount, written in basis points to represent a dollar amount (Example: |
Fee Start Date | {yourStartDate} | It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
Fee Name | {yourBusinessName} Risk Decision Service Fee | Optional. This will help more easily identify your Fee when viewing the Portal. |
Add Fee Parameter | Required Value | Note |
---|---|---|
|
| Fee. A Standard Fee. |
|
| Internal Decision V2. Payrix automated risk decision services. You can also use the following Risk Decision schedules:
|
|
| No schedule factor is needed ( |
|
| Fixed Amount. The Fee is a fixed amount, specified in the 'amount' field as an integer in cents. This is called “Actual” in the Portal Add Fee lightbox. |
| {yourFeeAmount} | The numerical fee amount, written in basis points to represent a dollar amount (Example: |
| {yourStartDate} |
It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
|
| US Dollars. CAD is also accepted. |
|
| Disabled Transaction Fee |
|
| Txn-Merchant. The total amount of all transactions per entity. |
|
| No Collection Factor |
|
| No Collection Offset |
|
| Active |
|
| Not Frozen |
Risk Service Fees
Risk Service Fees allow you to charge additional fees for the use of integrated third-party risk service. This flexibility enables Referrers to assess fees to Merchants that are higher risk requiring manual validations of the entity and its transactions on a regular basis in addition to fees assessed from the given risk service(s).
Example: A Referrer would like to assess fees to their Merchants to cover the costs of external risk services they use to ensure their Merchants' compliance. These services could include OFAC checks, personal credit pulls, or other necessary risk items needed for boarding or ongoing risk reviews.
Add Fee Parameter | Required Value | Note |
---|---|---|
When to trigger the fee? | Internal Decision V2 | Payrix automated Risk decision services. You can also use the following options for different supported Risk Services:
|
How much is the fee? | Percentage | |
Amount | 100% | The numerical fee percentage amount, written in basis points (Example: Note: You can create a markup on this fee by going above 100% such as 103.5% (written as |
Fee Start Date | {yourStartDate} | It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
Add Fee Parameter | Required Value | Note |
---|---|---|
|
| Fee. A Standard Fee. |
|
| Realtime Business Search. Real-time Business Entity OFAC Search from Bridger by LexisNexis. You can also use the following Risk Services:
|
|
| No schedule factor is needed ( |
|
| Fixed Amount. The Fee is a fixed amount, specified in the 'amount' field as an integer in cents. This is called “Actual” in the Portal Add Fee lightbox. |
| {yourFeeAmount} | The numerical fee amount, written in basis points to represent a dollar amount (Example: |
| {yourStartDate} |
It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
|
| US Dollars. CAD is also accepted. |
|
| Disabled Transaction Fee |
|
| Txn-Merchant. The total amount of all transactions per entity. |
|
| No Collection Factor |
|
| No Collection Offset |
|
| Active |
|
| Not Frozen |
Surcharge Fees
Surcharging allows Referrers to charge a per-transaction fee each time a credit card is used by cardholder that is charged to the Merchant but can be passed to the cardholder directly.
Example: The payment acceptance platform you offer as a Referrer assesses a 3% surcharge to Merchants for processing credit-only transactions to offset associated processing fees. As a result, you enable each of your Merchants to collect this surcharge from their customers using credit cards.
Warning: There are individual registration requirements and regulations by card brand before you can enable surcharges. The following steps will demonstrate how to enable the Surcharge once all prerequisits are met. Visit Understanding Surcharges for more details on the enablement requirements.
Warning: Surcharging is still illegal in a few US states/territories: Connecticut, Massachusetts, and Puerto Rico. Be sure to follow your local and regional regulations accordingly.
Add Fee Parameter | Required Value | Note |
---|---|---|
When to trigger the fee? | Capture | The Fee is triggered at the time of credit card capture for a transaction. |
How much is the fee? | Surcharge | |
Amount | 3% | The numerical fee amount, written in basis points to represent a percentage. (Example: Warning: When setting up a surcharge, do not exceed 3% to adhere with all credit card brand regulations. |
Fee Start Date | {yourStartDate} | It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
Transaction Fee | Enabled | Checkbox available under the “Advanced Options” section of the lightbox. |
Conditional Rule | Payment Card Type is | Credit Warning: This is required when setting up a surcharge as credit cards are the only payment method that allow surcharging. |
Surcharge fees require a two-part fee setup involving the creation of a fee and a fee rule:
Setting up the Surcharge Fee
Enabling the Credit-Only Fee Rule (required by card brands)
This model follows industry-standard rates and regulations as presented by card brands fees: 3% surcharging on credit card transaction only.
Part 1: Setup the initial Surcharge Fee.
Add Fee Parameter | Required Value | Note |
---|---|---|
|
| Fee. A Standard Fee. |
|
| Capture. The Fee is triggered at the time of credit card capture for a transaction. |
|
| No schedule factor is needed ( |
|
| Surcharge. The Fee is a percentage, specified in the |
|
| The numerical fee amount, written in basis points to represent a percentage. (Example: Warning: When setting up a surcharge, do not exceed 3% to adhere with all credit card brand regulations. |
| {yourStartDate} |
It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
|
| US Dollars. |
|
| Enabled Transaction Fee |
|
| Txn-Merchant. The total amount of all transactions per entity. |
|
| No Collection Factor |
|
| No Collection Offset |
|
| Active |
|
| Not Frozen |
Part 2: Apply a Credit-Only Surcharge Fee Rule.
Fee Rules utilize a different endpoint, see the information below:
Request URL & Header |
CODE
|
{
"fee": "t1_fee_xxxxxxxxxxxxxxxxxxxxxxx",
"name": "Credit-Only Surcharge Rule",
"description": "Only allows surcharging on credit cards.",
"type": "methodType",
"application": "both",
"value": "credit",
"inactive": "0",
"frozen": "0"
}
Parameter | Type | Required | Description | Valid Values |
---|---|---|---|---|
| string | Required | The ID of the Fee you created in Step 1 shown in the response body for | Format: |
| string | Optional | Custom name for the Fee Rule to make it easy to find. | Recommended name: |
| string | Optional | Custom description for the Fee Rule to summarize it’s purpose. | Recommended name: |
| string | Required | The type of Fee Rule deciding the |
This is selecting the payment method/card type, required for this fee setup. |
| string | Required | When the Fee Rule is applied. |
The rule should apply to the fee and to the calculation of collections. |
| string | Required | The value of deciding the Fee Rule condition set originally in the |
This is selecting the credit cards only as the payment method/card type that will be applied in the surcharge, required for this fee setup. |
| integer | Required | Whether or not this fee is active. | Valid Values:
|
| integer | Required | Whether or not this fee is temporarily frozen. | Valid Values:
|
{
"id": "t1_frl_xxxxxxxxxxxxxxxxxxxxxxx",
"created": "2024-01-24T17:50:38.717Z",
"modified": "2024-01-24T17:50:38.717Z",
"creator": "t1_log_xxxxxxxxxxxxxxxxxxxxxxx",
"modifier": "t1_log_xxxxxxxxxxxxxxxxxxxxxxx",
"fee": "t1_fee_xxxxxxxxxxxxxxxxxxxxxxx",
"name": "Credit-Only Surcharge Rule",
"description": "Only allows surcharging on credit cards.",
"type": "methodType",
"application": "both",
"value": "credit",
"inactive": "0",
"frozen": "0",
}
Parameter | Type | Description | Valid Values |
---|---|---|---|
| string | The newly created Fee Rule ID. | Format: |
| timestamp | The date and time the new Fee Rule was created. | Format: |
| timestamp | The date and time this Fee Rule was last modified. | Format: |
| string | The Login ID for the user that created this Fee Rule | Format: |
| string | The Login ID for the user that last modified this Fee Rule | Format: |
| string | The ID of the Fee your new Fee rule will be applied to. | Format: |
| string | Custom name for the Fee Rule to make it easy to find. | Recommended name: |
| string | Custom description for the Fee Rule to summarize it’s purpose. | Recommended description: |
| string | The type of Fee Rule deciding the |
This is selecting the payment method/card type, required for this fee setup. |
| string | When the Fee Rule is applied. |
The rule should apply to the fee and to the calculation of collections. |
| string | The value of deciding the Fee Rule condition set originally in the |
This is selecting the credit cards only as the payment method/card type that will be applied in the surcharge, required for this fee setup. |
| integer | Whether or not this fee is active. | Valid Values:
|
| integer | Whether or not this fee is temporarily frozen. | Valid Values:
|
Transaction Fees
Transaction Fees allow Referrers to charge their Merchants on a per-transaction basis to generate revenue as a Referrer.
Example: The payment acceptance platform you offer as a Referrer charges a per-transaction fee in the form of a flat rate authorization fee and a captured amount percentage. This is a common Fee model in the Payments industry commonly seen as “Transaction Processing Fees: 10¢ + 3%” for example.
This Transaction fee will use a two-part fee setup that involves the creation of multiple fees.
Setting up a flat rate fee for all credit card Authorizations.
Setting up a percentage fee for credit card Captures.
This model most closely resembles industry-standard payment processing fees: Flat Fee + % of the transaction total.
Part 1: Setting up a flat rate Authorization Fee.
Add Fee Parameter | Required Value | Note |
---|---|---|
When to trigger the fee? | Auth | The Fee is triggered at the time of authorization of a transaction. You can also use the following Fee Schedules:
|
How much is the fee? | Actual | |
Amount | {yourFeeAmount} | The numerical fee amount, written in basis points to represent a dollar amount (Example: Warning: Refer to each card brand and processor’s policies on Transaction fees to ensure compliance. |
Fee Start Date | {yourStartDate} | It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
Transaction Fee | Enabled | Checkbox available under the “Advanced Options” section of the lightbox. |
Part 2: Setting up a Capture Fee for a percentage of the transaction total.
Add Fee Parameter | Required Value | Note |
---|---|---|
When to trigger the fee? | Capture | The Fee triggers at the capture time of a Transaction. |
How much is the fee? | Percentage | |
Amount | {yourFeeAmount} | The percentage amount, written in basis points. (Example: Warning: Refer to each card brand and processor’s policies on Transaction fees to ensure compliance. |
Fee Start Date | {yourStartDate} | It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
Transaction Fee | Enabled | Checkbox available under the “Advanced Options” section of the lightbox. |
This Transaction fee will use a two-part fee setup that involves the creation of multiple fees.
Setting up a flat rate fee for all credit card Authorizations.
Setting up a percentage fee for credit card Captures.
This model most closely resembles industry-standard payment processing fees: Flat Fee + % of the transaction total.
Part 1: Setting up a flat rate Authorization Fee.
Add Fee Parameter | Required Value | Note |
---|---|---|
|
| Fee. A Standard Fee. |
|
| Auth. The Fee is triggered at the time of authorization of a transaction. You can also use the following Fee Schedules:
|
|
| No schedule factor is needed ( |
|
| Fixed Amount. The Fee is a fixed amount, specified in the 'amount' field as an integer in cents. This is called “Actual” in the Portal Add Fee lightbox. |
| {yourFeeAmount} | The numerical fee amount, written in basis points to represent a dollar amount (Example: |
| {yourStartDate} |
It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
|
| US Dollars. CAD is also accepted. |
|
| Enabled Transaction Fee |
|
| Txn-Merchant. The total amount of all transactions per entity. |
|
| No Collection Factor |
|
| No Collection Offset |
|
| Active |
|
| Not Frozen |
Part 2: Setting up a Capture Fee for a percentage of the transaction total.
Add Fee Parameter | Required Value | Note |
---|---|---|
|
| Fee. A Standard Fee. |
|
| Capture. The Fee triggers at the capture time of a Transaction. |
|
| No schedule factor is needed ( |
|
| Percentage. The Fee is a percentage of the related event amount, specified in the 'amount' field in basis points. |
| {yourFeeAmount} | The percentage amount, written in basis points. (Example: Warning: Refer to each card brand and processor’s policies on Transaction fees to ensure compliance. |
| {yourStartDate} |
It is recommended to use “today’s” date as the Fee Start Date to make the Fee effective immediately. |
|
| US Dollars. CAD is also accepted. |
|
| Enabled Transaction Fee |
|
| Txn-Merchant. The total amount of all transactions per entity. |
|
| No Collection Factor |
|
| No Collection Offset |
|
| Active |
|
| Not Frozen |
Adding Fee Modifiers
To change the entity that will be paying the cost for the Fee charge, you’ll need to setup a Fee Modifier.
Using the Portal
Warning: This process will not work if you have not setup a new Fee or are selecting an existing Fee configuration. Please see Setting up a Fee above for steps to setup a Fee if you’re not using an existing Fee setup.
After you’ve configured you’re initial Fee Type, to add additional Fee Rules, follow the steps below:
Step 1: Click Advanced Options in the Add Fee lightbox after your initial Fee setup.
Step 2: Check the “Deduct this Fee from Another Entity” checkbox, then under the DEDUCT FEE FROM drop-down, select the entity that the fee charge will be paid by.
Result: Finish configuring the rest of your Advanced Options for your fee and click the ADD button when finished to save the new Fee Modifier within the new Fee.
Step 1: Navigate to the Merchants or Groups page, located under Management.
Step 2: Click the Merchant or Group you want to charge the Fee to enter its Merchant Profile or Group Profile page.
Step 3: In the Merchant Profile or Group Profile, click Fees from the left-hand menu. Then, click the Fee setup you’d like to add the Fee Rule to from the Active Fees Section to enter the Fee Details page.
Step 4: On the Fees Details page, click the dropdown under the Fee Modifiers section and click the Add Fee Modifier button in the upper-right of the section.
Step 5: Set the the unit of measurement, amount, group (if applicable) and the ID for the “From Entity” (the entity that will be paying the fee) in the new field that has appeared.
Result: Click the ADD button when finished to save the new Fee Modifier to the existingFee.
Using the API
Request URL & Headers |
CODE
|
{
"fee": "t1_fee_xxxxxxxxxxxx",
"entity": "t1_ent_1xxxxxxxxxxx",
"org": "t1_org_xxxxxxxxxxxx",
"fromentity": "t1_ent_2xxxxxxxxxxx",
"markupUm": 2,
"markupAmount": "1000",
"inactive": "0",
"frozen": "0"
}
Parameter | Type | Required | Descriptions | Valid Values |
---|---|---|---|---|
| string | Required | The Fee ID for the Fee you want to apply the Fee Modifier to. | |
| string | Optional | The Entity ID for the Entity you want to apply the Fee Modifier to. | |
| string | Optional | The Org ID for the Org (Group) that you want to apply the Fee Modifier to. | |
| string | Required | The Entity ID for the Entity that will now be paying the cost of the original fee charges, with potential markup, on behalf of the specified Entity or Org above. | |
| integer | Optional | The unit of measurement for an optional markup amount. | Valid Values:
|
| number | Optional | The total amount of the markup value for this Fee. The units used in this field are determined by the value of the 'markupUm' field on the Fee.
| Formatting Examples: Fixed Amount
Percentage
|
| integer | Required | Whether or not this Fee Modifier is inactive. | Valid Values:
|
| integer | Required | Whether or not this Fee Modifier has been frozen. | Valid Values:
|
{
"id": "t1_fmr_xxxxxxxxxxxx",
"created": "2023-12-01T14:21:33.355Z",
"modified": "2023-12-01T14:21:33.355Z",
"creator": "t1_log_xxxxxxxxxxxx",
"modifier": "t1_log_xxxxxxxxxxxx",
"fee": "t1_fee_xxxxxxxxxxxx",
"entity": "t1_ent_1xxxxxxxxxxx",
"org": "t1_org_xxxxxxxxxxxx",
"division": "t1_div_xxxxxxxxxxxx",
"fromentity": "t1_ent_2xxxxxxxxxxx",
"markupUm": "2",
"markupAmount": "1000",
"inactive": "0",
"frozen": "0"
}
Parameter | Type | Description | Valid Values |
---|---|---|---|
| string | The ID of the newly created Fee Modifier. | |
| string | The Date and Time that the Fee Modifier was created. | |
| string | The Date and Time that the Fee Modifier was last modified. | |
| string | The Login ID for the user that created the Fee Modifier. | |
| string | The Login ID for the user that last modified the Fee Modifier. | |
| string | The Fee ID for the Fee you want to apply the Fee Modifier to. | |
| string | The Entity ID for the Entity you want to apply the Fee Modifier to. | |
| string | The Org ID for the Org (Group) that you want to apply the Fee Modifier to. | |
| string | The division containing the group or entities associated with the configuration. | |
| string | The Entity ID for the Entity that will now be paying the cost of the original fee charges, with potential markup, on behalf of the specified Entity or Org above. | |
| integer | The unit of measurement for an optional markup amount. | Valid Values:
|
| number | The total amount of the markup value for this Fee. The units used in this field are determined by the value of the 'markupUm' field on the Fee.
| Formatting Examples: Fixed Amount
Percentage
|
| integer | Whether or not this Fee Modifier is inactive. | Valid Values:
|
| integer | Whether or not this Fee Modifier has been frozen. | Valid Values:
|
Adding Fee Rules
To configure and refine the criteria of the Fee Schedule or “When to trigger the fee?” selection of a fee you’ve just created, follow the steps below.
Using the Portal
Warning: This process will not work if you have not setup a new Fee or are selecting an existing Fee configuration. Please see Setting up a Fee above for steps to setup a Fee if you’re not using an existing Fee setup.
After you’ve configured you’re initial Fee Type, to add additional Fee Rules, follow the steps below:
Step 1: Click Advanced Options in the Add Fee lightbox after your initial Fee setup.
Step 2: Click Conditional Rules and select a Fee Rule option. See Fee Rules for a list of available options with descriptions.
Step 3: Set the amount or value in the new field that has appeared.
Step 4: (Optional) After setting up your first Fee Rule, you can click the + button next to your first rule to add another.
Note: If you’d like to remove a rule from the Conditional Rules section as you’re setting up a Fee Rule, click the Trash Can icon next to the rule you wish to delete.
Click the ADD button when finished to save the new Fee Rule(s).
Step 1: Navigate to the Merchants or Groups page, located under Management.
Step 2: Click the Merchant or Group you want to charge the Fee to enter its Merchant Profile or Group Profile page.
Step 3: In the Merchant Profile or Group Profile, click Fees from the left-hand menu. Then, click the Fee setup you’d like to add the Fee Rule to from the Active Fees Section to enter the Fee Details page.
Step 4: On the Fees Details page, click the dropdown under the Fee Rules section and select a Fee Rule option. See Fee Rules for a list of available options with descriptions.
Step 5: Set the amount or value in the new field that has appeared.
Step 6: (Optional) After setting up your first Fee Rule, you can click the + button next to your first rule to add another.
Note: If you’d like to remove a rule from the Conditional Rules section as you’re setting up a Fee Rule, click the Trash Can icon next to the rule you wish to delete.
Click the Checkmark button in the upper right to save the new Fee Rule(s).
Using the API
Request URL & Headers |
CODE
|
{
"fee": "t1_fee_xxxxxxxxxxxxxxxxxxx",
"name": "No Fee for Txns < $l00",
"description": "This fee rule applies to Convenience Fees and will only apply the Fee when the total transaction amount is over $100.",
"type": "less",
"application": "both",
"value": "10000",
"grouping": "0",
"inactive": "0",
"frozen": "0",
}
Parameter | Type | Required | Descriptions | Valid Values |
---|---|---|---|---|
fee | string | Required | The Fee ID for the Fee you want to apply the Fee Rule to. | |
name | string | Optional | Custom name for the Fee Rule for easy identification. | |
description | string | Optional | Custom description for the Fee Rule for clarification. | |
type | string | Required | The type of rule you’ll be applying to the specified Fee. |
|
application | string | Required | When this Fee Rule will be applied. |
|
value | string | Required | This field refers to either the numerical amount for This field can also use a set of valid, non-numerical values that specify the Fee Rule value that triggers the type. The following Fee Types are applicable:
Note: See the | The following
See the remaining
Tip: You can find this by making a request to the
|
grouping | integer | Optional | Determines which rule will be chosen between two or more rule configurations.
| Valid Values:
|
inactive | integer | Required | Whether or not this Fee Rule is inactive. | Valid Values:
|
frozen | integer | Required | Whether or not this Fee Rule has been frozen. | Valid Values:
|
{
"id": "t1_rul_xxxxxxxxxxxxxxxxxxx",
"created": "2023-10-25T19:10:44.278Z",
"modified": "2023-10-25T19:10:44.278Z",
"creator": "t1_log_xxxxxxxxxxxxxxxxxxx",
"modifier": "t1_log_xxxxxxxxxxxxxxxxxxx",
"fee": "t1_fee_xxxxxxxxxxxxxxxxxxx",
"name": "No Fee for Txns < $l00",
"description": "This fee rule applies to Convenience Fees and will only apply the Fee when the total transaction amount is over $100.",
"type": "less",
"application": "both",
"value": "100000",
"grouping": "0",
"inactive": "0",
"frozen": "0",
}
Parameter | Type | Description | Valid Values |
---|---|---|---|
| string | The ID of the newly created Fee Rule. | |
| string | The Date and Time that the Fee Rule was created. | |
| string | The Date and Time that the Fee Rule was last modified. | |
| string | The Login ID for the user that created the Fee Rule. | |
| string | The Login ID for the user that last modified the Fee Rule. | |
| string | Custom name for the Fee Rule for easy identification. | |
| string | Custom description for the Fee Rule for clarification. | |
| string | The type of rule you’ll be applying to the specified Fee. |
|
| string | When this Fee Rule will be applied. |
|
| string | This field refers to either the numerical amount for This field can also use a set of valid, non-numerical values that specify the Fee Rule value that triggers the type. The following Fee Types are applicable:
Note: See the | The following
See the remaining
Tip: You can find this by making a request to the
|
| integer | Determines which rule will be chosen between two or more rule configurations.
| Valid Values:
|
| integer | Whether or not this Fee Rule is inactive. | Valid Values:
|
| integer | Whether or not this Fee Rule has been frozen. | Valid Values:
|
Additional Resources
For additional Fee-related resources, see the associated articles: