Account snapshots
Create an account snapshot
Creates an account snapshot for the customer with the person_id specified in the request URL. The account snapshot contains account information, such as balance, transactions, bookings, etc. <br>You can create an account snapshot in various ways by specifying the source. Check the properties descriptions and examples for more information.
post/v1/persons/{person_id}/account_snapshots
Path parameters
person_idstring required
The person ID of the customer for whom you're creating an account snapshot.
Request body
Example request
{
"snapshot_data": {
"turnovers": [
{
"tags": [
"salary"
],
"purpose": [
"SEPA-GEHALTSGUTSCHRIFT FinTecSystems GmbH LOHN / GEHALT 12/16"
],
"currency": "EUR",
"counter_iban": "DE87110101001000057123",
"counter_holder": "FinTecSystems GmbH",
"counter_bic": "TESTDE88XXX",
"booking_date": "2020-02-28",
"amount": 3009
}
],
"days": 365,
"date": "2020-02-28",
"balance": {
"limit": 1000,
"date": "2020-02-28",
"currency": "EUR",
"balance": 2123
},
"account": {
"iban": "DE88888881010987654321",
"holder": "MUSTERMANN, HARTMUT",
"description": "Girokonto",
"country_id": "DE",
"bic": "TESTDE88XXX",
"bank_name": "Testbank"
}
}
}Response
Application
Example response
{
"wizard_session_key": "wiz04852083740",
"location": "https://ui.solaris-i.prod.finleap.cloud?token=xxxxxx",
"id": "6c8f81a234df4052a9cde197577347b7snap",
"account_id": "adc123a45d6d7cf8fbfeed537ba919d5cacc"
}