Digital Payments

Custom Logo

How to add your own logo.

Edit "Custom Logo" on GitHub
warning

If you have integrated Seamless View as your payment UI, you need a specific agreement with Swedbank Pay to use this feature. No agreement is needed if you are using Redirect.

If you have permission and the feature has been activated in your contract, you can replace the Swedbank Pay logo in the Payment Menu. See the abbreviated example below with logoUrl present in the paymentOrder request’s urls.

  • The logo URL ust be a picture with maximum 50px height and 400px width. Requires HTTPS.

  • If the configuration is activated and you add a logoUrl, the Swedbank Pay logo will be replaced and the text changed accordingly.

  • If the configuration is activated and you do not add a logoUrl, no logo or text will be shown.

  • If the configuration is deactivated, adding a logoUrl has no effect.

Request

1
2
3
4
POST /psp/paymentorders HTTP/1.1
Host: api.externalintegration.payex.com
Authorization: Bearer <AccessToken>
Content-Type: application/json;version=3.x/2.0      // Version optional for 3.0 and 2.0
1
2
3
4
5
6
7
8
9
10
11
12
13
{
    "paymentorder": {
        "urls": {
            "logoUrl": "https://example.com/logo.png",
            "hostUrls": [ "https://example.com", "https://example.net" ],
            "completeUrl": "https://example.com/payment-completed",
            "cancelUrl": "https://example.com/payment-cancelled",
            "paymentUrl": "https://example.com/perform-payment",
            "callbackUrl": "https://api.example.com/payment-callback",
            "termsOfServiceUrl": "https://example.com/termsandconditions.pdf"
        }
    }
}