🧭Quick Start Guide

Quick start guide to our API

Before you begin

Firstly, follow the guide for Onboarding to ensure that you have a valid certificate and other preconditions in place. This guide will walk you through the basics of certificates and authentication and getting up the connection.


Verifying your connection and Heartbeat request

When your certificates are set up your are ready to send your first API request! Our Heartbeat service helps you to verity that you actually have the connection up and ready to go!

For simplicity, the following request is made using cURL.

Request

curl -k -H "Client-Code: 01234567" -H "Client-Country: GB" https://connect.development.lhv.com/heartbeat --cert <path_to_certificate> --key <path_to_certificate_key> 

The -k flag allows curl to perform insecure SSL connections and transfers. It ignores SSL certificate validation errors. It's should only be used for testing purposes like in this guide

Response

<HeartBeatResponse>
    <TimeStamp>2023-12-19T12:13:49.341+00:00</TimeStamp>
</HeartBeatResponse>

Your first Account Info request and response

Now it is time to execute your first API request providing access to your accounts and financial services.

  • Please familiarize with the chapter about the Messaging Pattern

  • As a first business service we recommend Account Balance. It is one of the simplest services that provides any information about your payment accounts.


Explore and integrate other services

Now that you have verified a request/response cycle with the Connect API, it is time to proceed further and explore our other services at Service Catalogue

Last updated