Statements of account

Create a statement of account

Creates a statement of account (Rechnungsabschluss) for the account specified in the request URL. Use the information returned in the response to generate your own branded PDF file to present to the customer. This file must include the entire data set returned by our API without exception, including the mandatory disclaimer text.<br> In the request, you must specify a year along with an interval and a period. Together, the interval and period determine the statement's beginning and end dates (statement_period_start_date and statement_period_end_date). For example, if you make a request with an interval of MONTHLY, a period of 3, and a year of 2022, then the API will return a statement of account for the month of March 2022. If the API returns an error related to the start and end dates, then the interval and period could not be translated into dates (e.g., an invalid enum was passed) or the given interval fell outside of the allowed time frame (e.g., in the future).

post/v1/accounts/{account_id}/statement_of_accounts

Path parameters

account_idstring required

Request body

interval'MONTHLY' | 'QUARTERLY' | 'EVERY_SIX_MONTHS' | 'ANNUALLY' required

Determines the amount of time that the statement of account should cover.

period1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 required

Determines the starting period in the year from which to return bookings.

yearinteger required

The year for which to create the statement of account.

Example request

{
  "interval": "MONTHLY",
  "period": 3,
  "year": 2022
}

Response

A statement for account has already been created based on the provided values.

idstring

Unique ID of the statement.

yearinteger

The year for which the statement was created.

interval'MONTHLY' | 'QUARTERLY' | 'EVERY_SIX_MONTHS' | 'ANNUALLY'

The time interval covered by the statement.

periodinteger

The period from which the statement interval begins.

statement_numberstring

The statement number.

issue_datestring date

Date when the statement was issued.

statement_period_start_datestring date

The beginning date of the period covered by the statement.

statement_period_end_datestring date

The end date of the period covered by the statement.

interest_accrual_ratenumber float

The daily rate at which interest is accrued on the used amount of an overdraft.

overdraft_rateinteger

The increased interest rate applied when going below the granted overdraft facility.

disclaimerstring

Solaris' legal disclaimer text, which you must show to the customer.

Example response

{
  "id": "e349cdc6b712035236bed32d7399ab72csoa",
  "year": 2022,
  "interval": "MONTHLY",
  "period": 3,
  "statement_number": "2022-M-03",
  "recipient_information": {
    "line_1": "Mr. Peter Mustermann",
    "line_2": "Musterstrasse 23",
    "line_3": "10409 Berlin",
    "line_4": "DE"
  },
  "issue_date": "2022-04-01",
  "statement_period_start_date": "2022-03-01",
  "statement_period_end_date": "2022-03-31",
  "interest_accrual_rate": 12.5,
  "overdraft_rate": 9,
  "account_information": {
    "iban": "DE76110101001100000999",
    "bic": "SOBKDEBBXXX"
  },
  "disclaimer": "Sehr geehrte Kundin, sehr geehrter Kunde,\\nbitte prüfen Sie die Buchungen, Berechnungen und den Abschlusssaldo im beiliegenden Kontoauszug, der zugleich einen Rechnungsabschluss darstellt. Rechnungsabschlüsse gelten als genehmigt, sofern Sie innerhalb von sechs Wochen nach Zugang keine Einwendungen erheben. Einwendungen gegen Rechnungsabschlüsse müssen der Solaris SE schriftlich oder in Textform (z.B. an support@solarisgroup.com) zugehen. Im Falle der Einwendung in Textform genügt zur Fristwahrung die rechtzeitige Absendung. Der angegebene Kontostand berücksichtigt nicht die Wertstellung der einzelnen Buchungen. Dies bedeutet, dass der genannte Betrag nicht dem für die Zinsrechnung maßgeblichen Kontostand entsprechen muss und bei Verfügungen möglicherweise Zinsen für die Inanspruchnahme einer eingeräumten oder geduldeten Kontoüberziehung anfallen können. Gutschriften aus eingereichten Lastschriften und anderen Einzugspapieren erfolgen unter dem Vorbehalt der Einlösung. Guthaben sind als Einlagen nach Maßgabe des Einlagensicherungsgesetzes entschädigungsfähig. Nähere Informationen können dem Informationsbogen für den Einleger entnommen werden, den Sie gemeinsam mit unseren für den Geschäftsverkehr mit Ihnen geltenden Allgemeinen Geschäftsbedingungen und besonderen Bedingungen unter www.solarisbank.de/partner einsehen können.\\nMit freundlichen Grüßen\\nIhre solarisBank"
}