Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Post an order → https://api.pei.is/docs/ui/index#!/Orders/Orders_SubmitOrder

    1. More detail about posting order is here

    2. The key detail that must be set correctly when using IFrame is SuccessReturnUrl and CancelReturnUrl

  2. Open the payment gateway web in iframe mode on your webpage.

  3. The payment gateway web will handle all 3DS verification so that happens all inside the Iframe.

  4. When the user has made a payment an event from the payment gateway webpage in the Iframe is sent to the parent page.

    1. 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.

    2. Event example of a successful credit card payment event

      • Code Block
        languagejson
        {
          "codestatusCode" : 200
          "message":"Payment Completed",
          "paymentCompletedisPaymentCompleted" : 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": [
                {
                  "7Occ7bxbxN8H4NCvb9UdlQXUUbZHuYFKid": 1641944,
          "reference" : "some reference data from merchant",
          "cardActionResult"         "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
            }
        }
    3. Event example of a failed credit card payment event

      • Code Block
        languagejson
        {
          "codestatusCode" : 1002
          "message":"Buyer does not have enough .....",
          "paymentCompleted" : false,
          "orderId" : "7Occ7bxbxN8H4NCvb9UdlQXUUbZHuYFK",
          "reference" : "some reference data from merchant",
          "cardActionResultorderInfo" : {
              "acquirerStatusCode": "51-I",
              "acquirerMessage": "Do not honor. details about the order ......"
            }
        }
  5. When the payment is successful and postback (webhook) message is sent to the merchant if defined in the order.

    1. Example of postback message

      1. Code Block
        languagejson
        {
          "orderId": "JqOuxhTtxJaxsxmXQ3JKIVjh2Jg23F5v",
          "purchaseId": 13593391,
          "mandateId": "bxex1d67c44e4f1fa03b8cbb97dca85f"
        }

...