Skip to main content

Electronic bank statements

info

In Twinfield there is a difference between the electronic bank statement and the bank transaction. This web service can only be used in order to retrieve electronic bank statement information. In order to retrieve information of bank transactions, use the browse data functionality.

General

Web service type: Command & Query Web Services

Resource location: /webservices/BankStatementService.svc?wsdl

Commands

The bank statement service does not support any commands.

Queries

GetBankStatements

public class GetBankStatements : Query
{
public DateTime StatementDateFrom; // All statements with a statement date equal to or higher than this value will be included.
public DateTime StatementDateTo; // All statements with a statement date equal to or lower than this value will be included.
public Boolean IncludePostedStatements; // If value is true, statements that have been posted will be included.
}

GetBankStatementsByCreationDate

public class GetBankStatementsByCreationDate : Query
{
public DateTime? CreationDateFrom; // All statements with a creation date equal to or higher than this value will be included.
public DateTime? CreationDateTo; // All statements with a creation date equal to or lower than this value will be included.
public Boolean IncludePostedStatements; // If value is true, statements that have been posted will be included.
}