Configure custom texts for banking apps

When using Toqio banking apps (ledger apps) you may consider customising some texts in the app you intend to use.

We provide endpoints that enable you to use custom text for some app text fields, for example fields like App title and “New account” button text (the button responsible for the account creation process). The endpoints allow you to send custom texts with translations.

What you can customise:

  1. App Title - The title your users will see at the top of the page when opening the app in the Merchant portal
  2. "New Account" Button Text - The text displayed on the button responsible for the account creation process
  3. Current Balance Title - The title your users will see instead of our default "Current balance'" title in the Merchant portal
  4. Current Balance Tooltip - The text your users will see when clicking on "i" tooltip next to the "Current balance" title.

To retrieve the current custom texts of an app you can use the Get Custom Ledger App Texts endpoint.
As a result you will receive the texts in the same format you will need to use to create or update them, so it’s advisable to use this endpoint prior to the next ones.

Path Params you will need:
customerId (Path Variable): The ID of the customer. marketplaceKey (Path Variable): The marketplace key of the app you want to customise

The response will be in the following format:
marketplaceKey : The marketplace key of the app you want to customise

texts: Maps the texts available for customisation and their translations.

An example of the response received would be:

[
  {
    "marketplaceKey": "testMarketplaceKey",
    "texts": {
      "newAccountButton": {
        "en": "testNewAccountButton",
        "es": "testBotonNuevaCuenta",
        "zh": null
      },
      "appTitle": {
        "en": "demoAppTitle",
        "es": "testTituloApp",
        "zh": null
      },
      "currentBalanceTooltip": {
        "en": "Current Balance",
        "es": "Balance actual",
        "zh": null
      },
      "currentBalanceTitle": {
        "en": "Current Balance",
        "es": "Balance actual",
        "zh": null
      }
    }
  }
]

To update custom texts for an app you can use the Update Custom Ledger App Texts endpoint.

When using the Update Custom Ledger App Text endpoint please make sure to send all custom fields. If you do not send us the required values with an update, the missing values will be set as null. We recommend using always the Get Custom Ledger App Texts endpoint to check what fields are already customised for the app.