Get list of requests

Service Description

Use this service to retrieve a list of requests you have previously submitted. Use additional filters where applicable to narrow down the result set.

Request

GET https://connect.lhv.com/v2/requests

Parameters

All parameters are optional.

Name
Value
Description

pageSize

integer

Number of results per page. Max value is 1000.

pageNumber

integer

Page number of results to return.

startDate

string

YYYY-MM-DD Filter requests submitted on or after this date.

endDate

string

YYYY-MM-DD Filter requests submitted on or before this date.

clientCode

string

Filter by client code.

clientCountry

string

Filter by client country.

Headers

Name
Value
Description

Client-Code

customer value

For Service Providers only. Company registration code of the Service Provider or its customer. When using the Service Provider own value also related customers messages are returned by default

Client-Country

customer value

For Service Providers only. Should match the value of Client-Code

Body

This request doesn't have a body.

Response

Name
Value
Description

Content-Type

application/json

Format of the message body

X-Bank-Code

LHVUK, LHVEE

LHV Bank entity

Body

{
    "messages": [
        {
            "messageRequestId": "REQ57287e59df1148f885a9a5ca2367bac5",
            "messageResponseType": "ACCOUNT_STATEMENT",
            "clientCode": "123123123",
            "clientCountry": "GB",
            "messageCreatedTime": "2025-05-19T11:07:26.765+01:00",
            "bankCode": "LHVUK"
        },
        {
            "messageRequestId": "REQ95b0e3c4a4f04a30b8a3f601a3ef9b17",
            "messageResponseType": "PAYMENT",
            "clientCode": "123123123",
            "clientCountry": "GB",
            "messageCreatedTime": "2025-05-19T12:05:26.765+01:00",
            "bankCode": "LHVUK"
        },
		....
        {
            "messageRequestId": "REQd9b5d09b18a54660ab5b7c75dfed0d5c",
            "messageResponseType": "ACCOUNT_STATEMENT",
            "clientCode": "123123123",
            "clientCountry": "GB",
            "messageCreatedTime": "2025-05-19T12:08:26.765+01:00",
            "bankCode": "LHVUK"
        }
    ]
}

Last updated

Was this helpful?