This section will guide you through the essential steps to integrate your third-party platform with our APIs. By following Following these steps, you will be able to can register as a Third Party Provider (TPP), generate necessary tokens, and establish secure communication with our services.
...
To begin integrating with Leatherback, you need to must register as a Third Party Provider (TPP). This registration process involves making an API call to our registration endpoint.
...
Prepare the JWT Header:
Set the
alg
(algorithm) toPS256
.Insert your key ID (
kid
) into the header.
Prepare the JWT Body:
Set the
response_type
tocode id_token
.Insert your
client_id
which you received during registration.Specify your
redirect_uri
.This is a page on your platform where the authorized customer will be redirected back to continue the open banking process. The authorization code or token and some other parameters like state will be sent alongside the redirect.
Set the
scope
toaccounts
.Include the
openbanking_intent_id
with the value of the generatedConsentId
.
Sign the JWT:
Sign the JWT using the private key of your signing certificate.
Ensure that the signature can be validated using the JWKs endpoint you specified during registration.
...
.
\uD83D\uDCCB Related articles
...