Register Your Application

In case you are a holder of a PSD2 license and have a valid eIDAS certificate proving your license, you can register your application easily using a registration API call.

In case you are a holder of a PSD2 license and have a valid eIDAS certificate proving your license, you can register your application easily using a registration API call.

We currently only support registering new applications via an API resource since this is the most universal way, as well as a part of the COBS standard specification. Despite this, creating an application is very simple.

Create a New Application

❗️

Mutual TLS Required

Do not forget that to call this resource, you must use mutual TLS with your eIDAS certificate with mandates for PSD2.

To register your application and obtain the application credentials, call the following registration resource:

POST /cobs/2.0/applications

{
  "client_name": "Bankovni Aplikace",
  "applicationType": "web",
  "redirect_uris": [
    "https://www.mymultibank.cz/start"
  ],
  "scopes": [
    "aisp", "pisp"
  ]
}
{
  "client_name": "Bankovni Aplikace",
  "applicationType": "web",
  "client_id": "06268053-ec82-49e6-b5e2-3ab3cd5095ac",
  "client_secret": "8c069680-06f5-4456-bec1-e8d2bca77f1c",
  "redirect_uris": [
    "https://www.mymultibank.cz/start"
  ],
  "scopes": [
    "aisp", "pisp"
  ]
}

To learn about our application registration services, please visit our API Reference that explains how to obtain application details, update an application or delete an application.


What’s Next

After you registered as a developer, you can proceed by implementing the OAuth 2.0 handshake.