Interac Combined Pay-in
Overview
Interac Combined Pay-in is a Canadian payment method that allows customers to make payments through bank transfers and online banking services. Purchases are performed by using Payment Page and Gate. Download the logo in vector format here. |
Payment method type |
|
---|---|
Countries and regions | Canada |
Payment currencies | CAD |
Currency conversion | |
Purchases | |
Payouts | * |
COF payments | |
Full refunds | |
Partial refunds | |
Chargebacks | |
Notes |
|
Onboarding and access fee | Refer to your key account manager at Monetix |
Interaction diagram
Payment processing by using the Interac Combined Pay-in payment method requires merchant's web service, one of Monetix interfaces, and the Monetix payment platform, as well as Interac technical facilities.
Operations support
Interfaces | Amounts, CAD | ||||
---|---|---|---|---|---|
Payment Page | Gate | Dashboard | minimum | maximum | |
Purchases | * | * |
* The maximum allowed purchase amount per customer per day is 2,500.00 CAD.
You can check the payment amount limits in your project by using Dashboard. To check your payment amount limits, go to Dashboard, select the Projects section and click the Payment methods tab.
Processing scenarios
In the Interac Combined Pay-in method, to perform a purchase operation, you need to redirect customer to the Interac service.
The sections that follow provide detailed information about what you need to perform payments and how you can analyze the information on payments and operations.
Purchase by using Payment Page
General information
In the Interac Combined Pay-in method, when processing a purchase by using Payment Page, the merchant web service should send a request with all the required parameters and signature to the Monetix URL and get the callback with the payment result from the payment platform. When opening Payment Page, you can have Payment Page opened with one of the Interac Combined Pay-in methods selected. For more information about preselecting payment methods, see in Preselecting payment methods. The full sequence and particularities of the purchase process are provided below.
- A customer initiates a purchase on the merchant's web service.
- The web service sends the request for Payment Page opening to the specified Monetix URL.
- The request for opening is redirected to the payment platform.
- The payment platform performs the initial request processing that involves validation of the required parameters and signature.
- Requested Payment Page is generated into the Monetix payment platform as specified in the project settings and the request parameters.
- Payment Page is displayed to the customer.
- The customer selects the Interac Combined Pay-in method.
- The payment platform receives the purchase request for payment processing from Payment Page.
- The payment platform performs the internal purchase request processing and sends it to the Interac service.
- The purchase request is processed on the Interac service side.
- The Interac service generates the data for redirecting the customer to its website form and sends it to the payment platform.
- The payment platform sends the customer redirection data to Payment Page.
- The customer is redirected to the Interac website.
- The customer completes all the payment steps required.
- The payment is processed on the Interac side.
- The result is displayed to the customer on the Interac website.
- The customer is redirected to Payment Page.
- The Interac service sends the result notification to the payment platform.
- The payment platform sends a callback with the payment result to the web service.
- The payment platform sends the result to Payment Page.
- A page with the payment result information is displayed to the customer on Payment Page.
The sections that follow discuss in more details the request format and the Payment Page parameters to use in the Interac Combined Pay-in payment method and provide the information on the format of callbacks with payment results. For the general information on how to use the API, see Payment Page API Description.
Request format
There are several things you need to consider when using the Interac Combined Pay-in method:
- You must provide values for the basic minimum of parameters. Listed below are the parameters that are required for any payment method:
- project_id—the project ID obtained from Monetix
- payment_id—payment ID unique within the project
- payment_amount—payment amount in minor currency units without any decimal point or comma except for cases where the currency does not have any minor currency units. If the currency has no minor units (that is, the number of digits for minor currency units is zero), then you must set this parameter to the amount in the major currency units. For the information on whether the currency has any minor units, see Currency codes.
- payment_currency—payment currency in ISO-4217 alpha-3 format
- customer_id—unique ID of the customer within your project
- customer_first_name—customer first name
- customer_last_name—customer last name
- customer_email—customer email address
- Also, you need to add the customer phone number to the customer_phone parameter. If this parameter is missing, Payment Page will contain an additional field for the customer to enter the missing information. For more information about additional information submission, see Submission of additional payment information.
- The currency of payment can only be CAD.
- If you need to have payment form displayed with the Interac Combined Pay-in method selected, set the force_payment_method parameter to
interac-cpi
. - If required, you can also add any other additional parameters Payment Page supports.
- After you specify all the parameters you need, you must create the signature for the request. For instructions on how to sign a payment request, see Signature generation and verification.
Here is an example of data from a request for Payment Page opening:
EPayWidget.run( { payment_id: 'ID_183', payment_amount: 1000, payment_currency: 'CAD', project_id: 238, customer_id: 'customer1', customer_first_name: 'Jane', customer_last_name: 'Doe', customer_phone: '12345678', customer_email: 'jane@example.com', signature: "hlhydUV+SmGJYhm6G47NknsqVx2TdMZrnJ9V5Ly...==" } )
For information about all parameters available in the Interac Combined Pay-in method, see Payment Page invocation parameters.
Callback format
The Interac Combined Pay-in method uses the standard format for callbacks to deliver purchase results. For more information, see Callbacks in Payment Page.
Note that unlike other payment methods, in the Interac Combined Pay-in method, the callbacks contain the first, last names, phone number, email and IP addresses of the customer in the first_name
, last_name
, phone
, email
, ip_address
parameters of the customer_data
object.
The following is the example of a callback with an information about successful 10.00 CAD
purchase made in the 8283
project.
{ "project_id": 8283, "payment": { "id": "EP4a54-1d00", "type": "purchase", "status": "success", "date": "2020-12-01T07:32:53+0000", "method": "OnlineBankingViaInteracCpi", "sum": { "amount": 1000, "currency": "CAD" }, "is_new_attempts_available": false, "attempts_timeout": 0, "description": "" }, "customer_data": { "first_name": "Jane", "last_name": "Doe", "phone": "1234567890", "email": "doe@example.com", "ip_address": "192.168.20.1" }, "fee": { "amount": 0, "currency": "CAD" }, "merchant_account_id": 8283, "operation": { "id": 50, "type": "sale", "status": "success", "date": "2020-12-01T07:32:53+0000", "created_date": "2020-12-01T07:32:39+0000", "request_id": "5318b90295e48d49e0087f353aceb6ad889589bd06ed64-00000001", "sum_initial": { "amount": 1000, "currency": "CAD" }, "sum_converted": { "amount": 1000, "currency": "CAD" }, "code": "0", "message": "Success", "provider": { "id": 8283, "payment_id": "50", "auth_code": "", "endpoint_id": "IDP" } }, "signature": "OpG9CTFTy5b81NzxYKZbyVNq8XJDOhjCwiym5z6Ig9gQwUWIs7Dpw==" }
The following is the example of a callback for a declined purchase.
{ "project_id": 8283, "payment": { "id": "EP8399-a2e9", "type": "purchase", "status": "decline", "date": "2020-11-24T13:19:33+0000", "method": "OnlineBankingViaInteracCpi", "sum": { "amount": 10000, "currency": "CAD" }, "is_new_attempts_available": false, "attempts_timeout": 0, "description": "" }, "customer_data": { "first_name": "Jane", "last_name": "Doe", "phone": "1234567890", "email": "doe@example.com", "ip_address": "192.168.20.1" }, "fee": { "amount": 0, "currency": "CAD" }, "merchant_account_id": 8283, "operation": { "id": 58, "type": "sale", "status": "decline", "date": "2020-11-24T13:19:33+0000", "created_date": "2020-11-24T13:18:51+0000", "request_id": "dbc44e0f97e11bffff8eeaf51bef076e3363662d97d-00000001", "sum_initial": { "amount": 10000, "currency": "CAD" }, "sum_converted": { "amount": 10000, "currency": "CAD" }, "code": "20000", "message": "General decline", "provider": { "id": 8283, "payment_id": "58", "auth_code": "" } }, "signature": "SjrAIoboAsVeNF2r89BDBkIjZEXHNddUY9GaiWlbJfTIn0shkdDRg==" }
Related topics
The following topics might be useful when implementing payments by using Payment Page:
Purchase by using Gate
General information
In the Interac Combined Pay-in method, when processing a purchase by using Gate, the merchant web service is required to do the following:
- Send a request with all the required parameters and signature to the Monetix URL.
- Perform the redirection of a customer to the Interac service.
- Get the callback with the payment result from the payment platform.
The following diagram provides the detailed picture of the payment processing procedure.
- A customer initiates a purchase through Interac Combined Pay-in on the merchant's web service side.
- The web service sends the request for processing the purchase by using Gate to the specified Monetix URL.
- The payment platform receives the request for processing the purchase from Gate.
- The payment platform performs the initial request processing that includes validation of the required parameters and signature.
- The payment platform sends the response with request receipt confirmation and correctness check result to the web service. For more information, see Response structure.
- The payment platform performs the internal payment request processing and redirects the request to the Interac service.
- The request is processed on the Interac side.
- The Interac service sends the data for redirecting the customer to the Interac service to the payment platform.
- The payment platform sends the callback with the redirection data in the redirect_data object to the web service.
- The customer is redirected from the web service to the Interac service.
- The customer completes all the payment steps required.
- The payment is processed on the Interac side.
- The result is displayed to the customer.
- The customer is redirected to the merchant's web service.
- The Interac service sends the payment result notification to the payment platform.
- The payment platform sends a callback to the web service.
- The customer receives the payment result on the web service.
It is necessary to use the internal Interac Combined Pay-in style guide while developing the payment page displayed to customers. Display the specific service design(s) (logos), or wordmark (e.g. the text “INTERAC Combined Pay-in”). The first use of the INTERAC wordmark has the ® notation beside the word “INTERAC” in superscript text. For example, “Interac®” (English). Show the following footnote on the same page as the wordmark: “® Trade-mark of Interac Corp. Used under license”. The style guide and logos you can obtain from your Monetix key account manager.
The sections that follow discuss in more details the request format and the Gate parameters to use in the Interac Combined Pay-in payment method and provide the information on the format of callbacks with purchase results.
Request format
There are several things you must consider when using purchase requests in the Interac Combined Pay-in method:- You perform purchase by sending the
/v2/payment/online-banking/interac-cpi/sale
request by using POST (HTTP) method. This request refers to the online banking payment requests group: /v2/payment/online-banking/{payment_method}/sale - The following objects and parameters must be specified in any request:
- general—object with general request identification information:
- project_id—the project ID obtained from Monetix
- payment_id—payment ID unique within the project
- signature—signature created after you specify all the required parameters. For more information about signature generation, see Signature generation and verification.
- customer—object with customer information:
- id—the unique ID of the customer within your project
- ip_address—customer device IP
- email—customer email
- first_name—customer first name
- last_name—customer last name
- phone—customer phone number. This parameter may be passed either in initial request or in the process of additional payment information submission. For more information about additional information submission, see Submission of additional payment information.
- payment—object with purchase information:
- amount—purchase amount in minor currency units without any decimal point or comma except for cases where the currency does not have any minor currency units. If the currency has no minor units (that is, the number of digits for minor currency units is zero), then you must set this parameter to the amount in the major currency units. For the information on whether the currency has any minor units, see Currency codes.
- currency—code of purchase currency in the ISO-4217 alpha-3 format
- general—object with general request identification information:
- The currency of purchase can only be CAD.
- If required, you can also add any other additional parameters Gate supports.
Here is an example of data from a purchase request in the Interac Combined Pay-in method.
{ "general": { "project_id": 125, "payment_id": "ID_184", "signature": "PJkV8ej\/UG0Di8hTng6JvC7vQsaMeSaRfBaNIipTv+AWoXW\/9MTO8yJA==" }, "customer": { "ip_address": "123.56.38.76", "first_name": "Jane", "last_name": "Doe", "phone": "12345678", "email": "jane@example.com", "id": "123" }, "payment": { "amount": 1000, "currency": "CAD" } }
Format of customer redirection data
After receiving and processing your purchase request, the payment platform sends a callback to your web service containing the data to redirect the customer to the Interac service.
To redirect the customer, use the values of the following parameters in the redirect_data object:
- url—the URL to redirect the customer to
- body—the data to be sent in the request body
- method—the HTTP method to get an HTML page of the website (for example, POST or GET)
- encrypted—this is the service parameter. Ignore the data it contains.
Here is an example of a piece of callback containing the data to redirect the customer.
"redirect_data": { "method": "POST", "body": { "example_parameter_1": "value_1", "example_parameter_2": "value_2" }, "encrypted": [], "url": "https://example.com/redirect" }
Callback format
The Interac Combined Pay-in method uses the standard format for callbacks to deliver purchase results. For more information, see Callbacks in Gate.
Note that unlike other payment methods, in the Interac Combined Pay-in method, the callbacks contain the first, last names, phone number, email and IP addresses of the customer in the first_name
, last_name
, phone
, email
, ip_address
parameters of the customer_data
object.
The following is the example of a callback with an information about successful 10.00 CAD
purchase made in the 8283
project.
{ "project_id": 8283, "payment": { "id": "EP4a54-1d00", "type": "purchase", "status": "success", "date": "2020-12-01T07:32:53+0000", "method": "OnlineBankingViaInteracCpi", "sum": { "amount": 1000, "currency": "CAD" }, "is_new_attempts_available": false, "attempts_timeout": 0, "description": "" }, "customer_data": { "first_name": "Jane", "last_name": "Doe", "phone": "1234567890", "email": "doe@example.com", "ip_address": "192.168.20.1" }, "fee": { "amount": 0, "currency": "CAD" }, "merchant_account_id": 8283, "operation": { "id": 50, "type": "sale", "status": "success", "date": "2020-12-01T07:32:53+0000", "created_date": "2020-12-01T07:32:39+0000", "request_id": "5318b90295e48d49e0087f353aceb6ad889589bd06ed64-00000001", "sum_initial": { "amount": 1000, "currency": "CAD" }, "sum_converted": { "amount": 1000, "currency": "CAD" }, "code": "0", "message": "Success", "provider": { "id": 8283, "payment_id": "50", "auth_code": "", "endpoint_id": "IDP" } }, "signature": "OpG9CTFTy5b81NzxYKZbyVNq8XJDOhjCwiym5z6Ig9gQwUWIs7Dpw==" }
The following is the example of a callback for a declined purchase.
{ "project_id": 8283, "payment": { "id": "EP8399-a2e9", "type": "purchase", "status": "decline", "date": "2020-11-24T13:19:33+0000", "method": "OnlineBankingViaInteracCpi", "sum": { "amount": 10000, "currency": "CAD" }, "is_new_attempts_available": false, "attempts_timeout": 0, "description": "" }, "customer_data": { "first_name": "Jane", "last_name": "Doe", "phone": "1234567890", "email": "doe@example.com", "ip_address": "192.168.20.1" }, "fee": { "amount": 0, "currency": "CAD" }, "merchant_account_id": 8283, "operation": { "id": 58, "type": "sale", "status": "decline", "date": "2020-11-24T13:19:33+0000", "created_date": "2020-11-24T13:18:51+0000", "request_id": "dbc44e0f97e11bffff8eeaf51bef076e3363662d97d-00000001", "sum_initial": { "amount": 10000, "currency": "CAD" }, "sum_converted": { "amount": 10000, "currency": "CAD" }, "code": "20000", "message": "General decline", "provider": { "id": 8283, "payment_id": "58", "auth_code": "" } }, "signature": "SjrAIoboAsVeNF2r89BDBkIjZEXHNddUY9GaiWlbJfTIn0shkdDRg==" }
Related topics
The following topics might be useful when implementing payments through Gate:
Analysis of payments results
As with other payment methods Monetix offers, when using this method, you have several options to analyze the information about payments and operations.
You can load and analyze all the necessary information in Dashboard (dash-light.trxhost.com
), for instance you can use the analytic panels in the Analytics section for this purpose.
Also, you can export the information for further analysis by using third party analytical tools. The following options are available:
- Dashboard allows you to download reports in CSV format by using the tools in the Reports section. You can perform export as a one-time or regular download of data to your local computer.
- Data API allows you to have payment information exported in JSON format and delivered to a URL you specify. The payment information is exported by means of sending requests to the /operations/get endpoint.
If you have any further questions regarding payment data analysis, contact Monetix technical support.