In order for us to properly identify your API requests, we need you to provide the distinguished name (Subject DN) of your transport certificate.
Run the following request to get your certificate's distinguished name:
curl -k --cert transport.pem --key private.key \
--location --request GET 'https://oba-auth.revolut.com/distinguished-name'
The response is a JSON object with a single element: tls_client_auth_dn
. This string is the distinguished name of your transport certificate.
{
"tls_client_auth_dn":"organizationIdentifier=PSDUK-REVCA-6885ef16-75dc-4be8-8f8a-228fbd3a1e7d,CN=2kiXQyo0podjW2somjHo67,OU=001570000113UAvAAM,O=OpenBanking,C=GB"
}
The distinguished name (Subject DN) of the certificate, is a set of parameters which identify a certificate. You will need this string for the JWT of your application in the next step.