8. Pay
The Pay request is used to retrieving the wallet related information. The API is available at the following path:
End point |
[Velocity URL]/mpoint/pay |
Format |
text/xml |
Authentication |
HTTP basic access authentication |
8.1 Pay Request
The pay request will be different for both the mobile and web channel and, depending on the channel, we need to send the respective parameter.
8.1.1 Apple Pay Request for a Web Channel
When we process the Apple Pay web transaction, we need to send the session URL in the token. In this session URL and when user clicks the button, we receive this URL from the Apple Pay wallet.
<?xml version="1.0" encoding="UTF-8"?>
<root>
<pay client-id="10064" account="100640">
<transaction id="9953806" store-card="false">
<card type-id="15">
<amount country-id="200" currency-id= "840">100</amount>
<token>https://apple-pay-gateway-cert.apple.com/paymentservices/startSession</token>
</card>
</transaction>
<client-info language="us" version="1.00" platform="HTML5/1.00"/>
</pay>
</root>
In web channel request, we need to send the additional header parameter and the host URL in the header as the key name reference. Check the example below.
Refer:https://www.mywebsite.com
8.1.2 Apple Pay Request for a Mobile Channel
<?xml version="1.0" encoding="UTF-8"?>
<root>
<pay account="100691" client-id="10069">
<transaction store-card="false" id="10044528">
<card type-id="15">
<amount country-id="200" currency-id="840">22398</amount>
</card>
</transaction>
<client-info version="10.02" app-version="10.02" sdk-version="2.3.1" language="gb" platform="iOS/15.5">
<device-id>087E575D-92BD-483A-B1AA-C4F9CDCA5674</device-id>
</client-info>
</pay>
</root>
The Authorize Request parameters are listed in the table below.
Parameter |
Type |
Mandatory |
Description |
||||||||||||||||||||
Authorize-payment Parameters |
|||||||||||||||||||||||
account |
Integer |
No |
The number for a sub-account with which a payment transaction is associated. The account ID is an integer greater than 100000 and account number is an integer smaller than 1000.
The payment transaction is associated with the default
|
||||||||||||||||||||
client-id |
Integer |
Yes |
The unique ID of a merchant. |
||||||||||||||||||||
Transaction Parameters |
|||||||||||||||||||||||
id |
Integer |
Yes |
The ID of the transaction. |
||||||||||||||||||||
type-id |
Integer |
Yes |
A unique transaction identification number. |
||||||||||||||||||||
card network |
Enum |
No |
A list to identify the card network from which the token was obtained. It takes one of the following values:
|
||||||||||||||||||||
Card Parameters |
|||||||||||||||||||||||
currency-id |
Integer |
Yes |
The country currency code of a currency. |
||||||||||||||||||||
country-id |
Integer |
Yes |
The CellPoint Digital-specific country code, which is made available to merchants on request. |
||||||||||||||||||||
token |
String |
No |
The base64 encoded cryptogram or session URL received from a third-party wallet such as Apple Pay™. |
||||||||||||||||||||
hmac |
String |
No |
The Message Authentication Code (MAC). It is calculated
by creating a sha-512 hash comprising the following
input fields in the listed order:
Note: CELLPOINT DIGITAL provides the salt value to merchants. MAC calculation secures the information sent by the merchant to Velocity by applying the SHA-512 encryption algorithm on key parts of the information sent to protect against tampering. The “salt” is the merchant's shared secret string used to ensure that MAC is unique. |
||||||||||||||||||||
Address Parameters |
|||||||||||||||||||||||
country-id |
Integer |
Yes |
The CellPoint Digital-specific country code, which is made available to merchants on request. |
||||||||||||||||||||
full-name |
String |
Yes |
The full name of a customer. |
||||||||||||||||||||
street |
String |
Yes |
The full address of a customer with street name and street number. |
||||||||||||||||||||
postal-code |
String |
Yes |
The postal code of a customer. |
||||||||||||||||||||
city |
String |
Yes |
The city in which a customer resides. |
||||||||||||||||||||
state |
String |
No |
The state in which a customer resides. Customers enter this parameter only if their country of residence is divided onto states. |
||||||||||||||||||||
country-id |
Integer |
Yes |
The CellPoint Digital-specific country code, which is made available to merchants on request. |
||||||||||||||||||||
Client Information Parameters |
|||||||||||||||||||||||
language |
String |
Yes |
The language that Velocity uses as default when translating the payment pages. Note: Velocity language codes are based upon the ISO- 639-1 standard. Refer to https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes for details. |
||||||||||||||||||||
version |
String |
Yes |
The version of an API or application that sends the request. |
||||||||||||||||||||
platform |
String |
Yes |
The platform from which the request is sent. For example, web, iOS, Android, B2B, and B2C. |
||||||||||||||||||||
mobile operator-id |
Integer |
Yes |
The ID of a customer’s mobile network operator. CellPoint Digital recommends including this parameter in the request to ensure Velocity correctly interacts with the operator. |
||||||||||||||||||||
|
String |
No |
The email address of a customer. If a customer provides this parameter, the Email input field on the Send Email Receipt page is automatically populated with this value. |
Updated 5 months ago