QR Ph
Overview
Introduction
QR Ph is a payment method which allows you to process payments in Philippine pesos by using bank accounts and e-wallets in the Philippines. This method supports purchases.
This article provides information about working with the QR Ph method: general insights are presented in the Overview section, while information about the actions required to process payments and perform other actions is presented in the sections that follow.
General information
Payment method type | QR code payments |
---|---|
Payment instruments |
|
Countries and regions | PH |
Payment currencies | PHP |
Currency conversion | on the ecommpay side |
One-time purchases | + |
Credential-on-file purchases | – |
Full refunds | – |
Partial refunds | – |
Payouts | – |
Chargebacks | – |
Notes | – |
Onboarding and access fee | refer to your ecommpay account manager |
Interaction diagram
Payment processing by using the QR Ph method involves the merchant's web service, one of ecommpay interfaces, the ecommpay payment platform, and technical facilities of the provider service.
Operations support
Various platform interfaces can be used to process payments and perform operations using the QR Ph method. Purchases can be processed by using Payment Page, Gate and Dashboard (using payment links). At the same time, regardless of the interfaces used, the amount of a single purchase can be 100.00 PHP minimum and 50,000.00 PHP maximum. For more information about limitations on purchase amounts, refer to your ecommpay account manager.
In case of using the QR Ph method, the amount of a single purchase can be 100.00 PHP minimum and 50,000.00 PHP maximum. For more information about limitations on purchase amounts, refer to your ecommpay account manager.
Processing scenarios
To perform a purchase by using the QR Ph method, the customer needs to scan a QR code via a mobile application.
The customer payment scenario via Payment Page (in the basic case where the customer chooses the method and is redirected from the final page of the payment form to the web service) looks like this.
General scenarios of processing purchases can be presented as follows.
Scenarios for performing operations via the main interfaces of the payment platform correspond to those presented in the diagrams. Similarly, when additional features (such as payment links) are used, scenarios for performing operations also correspond to the specifics of those features.
Purchases by using Payment Page
General information
To process a purchase through Payment Page by using the QR Ph method, the merchant's web service is required to send a request with all required parameters and signature to the ecommpay URL and receive a callback with the result. The full sequence and special aspects of purchase processing are provided below.
Information about the formats of requests and callbacks used for processing payments by using the QR Ph method via Payment Page is presented further in this section; general information about working with the Payment Page API is presented in Interaction concepts.
Request format
There are several things you need to consider when sending purchase requests by using the QR Ph method:
- The following parameters required for any payment must be specified:
project_id
—project identifier obtained from ecommpay during integrationpayment_id
—payment identifier unique within the projectpayment_currency
—payment currency code in the ISO-4217 alpha-3 formatpayment_amount
—payment amount in the smallest currency unitcustomer_id
—customer identifier unique within the project
Depending on the payment processing provider, other parameters may be required in the purchase requests (such as
customer_first_name
,customer_last_name
, andcustomer_email
). For more information about potentially required parameters, contact your ecommpay account manager. - The following parameters required for any payment must be specified:
project_id
,payment_id
,payment_currency
,payment_amount
,customer_id
.Depending on the payment processing provider, other parameters may be required in the purchase requests.
- If you need to have the payment form displayed with the QR Ph method selected, set the
force_payment_method
parameter toph-qr
. - Additionally, any other parameters available for working with Payment Page can be used (details).
- After all target parameters are specified, generate a signature (details).
Thus, a correct request for opening the payment form using the QR Ph method must contain the project identifier, basic payment information (identifier, amount, and currency code), customer identifier and signature.
Callback format
The QR Ph method uses the standard format for callbacks to deliver purchase results. For more information, see Callbacks.
The following is the example of a callback with information about a 10,000.00 PHP
purchase made by the customer_123
customer in the 1234
project.
The following is the example of a callback with information about a declined purchase.
Useful links
The following articles can be useful when implementing purchases via Payment Page:
- Interaction concepts—about the interaction with the payment platform by using Payment Page.
- Signature generation and verification—about the procedure of generating and verifying signatures in requests and callbacks.
- Payment models and statuses—about the types, processing models, and possible statuses of supported payments and operations.
- One-time one-step purchase—about processing of one-time one-step purchases by using Payment Page.
- Information of operations performing—about error and response codes that are used in the payment platform to record information about performing of operations.
Purchases by using Gate
General information
To process a purchase through Gate by using the QR Ph method, the merchant's web service is required to do the following:
- Send a request with all the required parameters and signature to the ecommpay URL.
- Receive an intermediate callback from the payment platform and display a QR code and payment instructions to the customer.
- Receive the final callback from the payment platform.
The full sequence and special aspects of purchase processing are provided below.
Information about the formats of requests and callbacks used for processing payments by using the QR Ph method via Gate is presented further in this section. General information about working with the Gate API is presented in Interaction concepts.
Request format
There are several things you need to consider when sending purchase requests by using the QR Ph method:
- To initiate each purchase, send a separate POST request to the
/v2/payment/qr/ph-qr/sale
endpoint. - Each request must include the following objects and parameters:
- Object
general
—general purchase information:project_id
—project identifier obtained from ecommpay during integrationpayment_id
—payment identifier unique within the projectsignature
—request signature generated after all required parameters are specified (details—in the Signature generation and verification) (details)
- Object
payment
—payment information:amount
—payment amount in the smallest currency unitcurrency
—payment currency code in the ISO-4217 alpha-3 format
- Object
customer
—customer information:id
—customer identifier unique within the projectip_address
—customer IP address relevant for the initiated payment
Depending on the payment processing provider, other parameters may be required in the purchase requests (such as the parameters for specifying the customer's first and last names and email address). For more information about potentially required parameters, contact your ecommpay account manager.
- Object
- Additionally, any other parameters included in the specification can be used.
Thus, a correct purchase request by using the QR Ph method must contain the project identifier, basic payment information (identifier, amount, and currency code), customer identifier and IP address and the signature.
Formats of intermediate callbacks for displaying QR codes to customers
Each payment made with the QR Ph method requires displaying QR codes to customers. To display QR codes it is necessary to receive an intermediate callback from the payment platform and use the information included in the display_data
array. The format of such callbacks is standard (details), and the following objects and parameters are included in the display_data
array:
type
—type of data (the value is alwaysqr_img
)title
—the name of the transferred data that needs to be displayed to the customer (the value is alwaysqr_img
)data
—a string based on which a QR code should be generated on the web service side (according to ISO/IEC 18004:2015)
Final callback format
The QR Ph method uses the standard format for callbacks to deliver purchase results. For more information, see Callbacks.
The following is the example of a callback with information about a 10,000.00 PHP
purchase made by the customer_123
customer in the 1234
project.
The following is the example of a callback with information about a declined purchase.
Useful links
The following articles can be useful when implementing purchases via Gate:
- Interaction concepts—about the interaction with the payment platform by using Gate.
- Signature generation and verification—about the procedure of generating and verifying signatures in requests and callbacks.
- Payment models and statuses—about the types, processing models, and possible statuses of supported payments and operations.
- One-time one-step purchase—about processing of one-time one-step purchases by using Payment Page.
- Information of operations performing—about error and response codes that are used in the payment platform to record information about performing of operations.
Analysis of payment results
To analyse information about payments made with the QR Ph method and other methods, you can use:
- Dashboard interface toolkit with various lists and analytic panels.
- Reports in CSV file format, available via the Reports section (one-time and periodically).
- Data in JSON format, sent by program requests to a specified URL available by using the Data API interface.
If you have any questions, refer to the documentation (Dashboard and Using Data API) and ecommpay technical support.