2022-12-01 Publish changes
- 1 Paymentgateway web Iframe support
- 1.1 How it works
- 1.1.1 Diagram of the flow
- 1.1 How it works
- 2 New Return and Refund response in OrderAPI
- 3 Returning information about the order, “OrderAPI” “GET Orders”
- 4 No retry policy from the ValitorPay gateway
- 5 Added support for treating Payment slips in the name of the Merchant.
Paymentgateway web Iframe support
This applies to : https://gattinn.pei.is and https://gattin.greidslumidlun.is
When using an Iframe solution in a payment gateway there is a certain flow that must be used
How it works
Post an order → https://api.pei.is/docs/ui/index#!/Orders/Orders_SubmitOrder
More detail about posting order is here
The key detail that must be set correctly when using IFrame is SuccessReturnUrl and CancelReturnUrl
Open the payment gateway web in iframe mode on your webpage.
The payment gateway web will handle all 3DS verification so that happens all inside the Iframe.
When the user has made a payment an event from the payment gateway webpage in the Iframe is sent to the parent page.
This event contains information about if the payment was successful or failed and has the error code from Pei regarding and will include additional code and message from acquired if a credit card payment is made.
Event example of a successful credit card payment event
{ "statusCode" : 200 "message":"Payment Completed", "isPaymentCompleted" : true, "reference" : "some reference data from merchant", "orderInfo" : { "orderId": "Muixxxdd3qe14dQBAp5wOYTE8kWiVIBjg", "buyer": { "name": "Buyer name", "ssn": "3000493993", "email": "someemail@pei.is", "mobileNumber": "9999999" }, "merchantId": 4, "successReturnUrl": "https://gattinstaging.greidslumidlun.is/iframe/completed?ref=123", "cancelReturnUrl": "https://gattinstaging.greidslumidlun.is/iframe?ref=123", "amount": 7250.0, "isConfirmed": true, "paymentMethod": 1, "items": [ { "id": 1641944, "name": "Gjöf", "quantity": 1.0, "unitPrice": 7250.0, "amount": 7250.0, } ], "cardActionResult": { "acquirerStatusCode": "00-I", "acquirerMessage": "Authorized." }, "confirmationDate": "2022-12-01T18:55:23.233", "mandateId": null, "maskedCard": "XXXX-XXXX-XXXX-6699", "cardType": "Mastercard", "authorizationCode": "815455 } }
Event example of a failed credit card payment event
{ "statusCode" : 1002 "message":"Buyer does not have enough .....", "paymentCompleted" : false, "reference" : "some reference data from merchant", "orderInfo" : { details about the order ...... } }
When the payment is successful and postback (webhook) message is sent to the merchant if defined in the order.
Example of postback message
{ "orderId": "JqOuxhTtxJaxsxmXQ3JKIVjh2Jg23F5v", "purchaseId": 13593391, "mandateId": "bxex1d67c44e4f1fa03b8cbb97dca85f" }
Diagram of the flow
New Return and Refund response in OrderAPI
We added card acquirer transaction response both on success and failure. Just note that the “cardActionResult” section will only appear in the failure response when the cause of the error is transaction failure or something related to the acquirer action.
The return command is used to fully refund the credit card payment of an order.
See more information with this link https://api.pei.is/docs/ui/index#!/Orders/OrdersV1_Return
Responses:
200, Success:
400, Failure
The refund command is used for a partial refund of the credit card payment of an order.
See more information with this link https://api.pei.is/docs/ui/index#!/Orders/OrdersV1_Refund
Partial refund is not possible until next day after the authorisation has been cleared.
Responses:
200, Success:
400, Failure
Returning information about the order, “OrderAPI” “GET Orders”
A few things have been added to the order to provide more information about the order.
See more information on this link https://api.pei.is/docs/ui/index#!/Orders/OrdersV1_GetOrder
Field | Description | Example |
---|---|---|
status | Contains status information about the order: Status codes:
| “status” : 1 |
maskedCard | Contains masked credit card number. This will only appear if the payment was credit card payment. | “maskedCard” : “XXXX-XXXX-XXXX-1309“ |
cardType | Credit card type This will only appear if the payment was credit card payment. | “cardType” : “Visa” |
authorizationCode | The authorization code for the payment made with credit card. This will only appear if the payment was credit card payment. | “authorizationCode” : “429136” |
refundedAmount | Refunded amount on a order. | “refundedAmount” : 1000.0 |
cardActionResult | Section with information from credit card acuirer | "cardActionResult": { |
|
|
|
Example of response
No retry policy from the ValitorPay gateway
The system has been implemented to take into account and handle the No retry policy from ValitorPay.
More information about that can be found on ValitorPay web site https://uat.valitorpay.com/ResponseCodes.html
Added support for treating Payment slips in the name of the Merchant.
Today almost every payment slip is created in Geiðslumiðlun name and that can be confusing for the buyer to see what he will be paying for and from what merchant.
Now there has been added support to use the merchant B2B bank account to create the payment slip in their name but still use the Greidslumidlun payment gateway.