Summary information for a selected address book record is available in the application under the "Summary Information" tab.
The overview includes information such as total invoiced amount, outstanding amount, due date, and more. This information is also available via the REST API.
Usage examples
The request is sent using the GET method to the URL:
GET https://demo.flexibee.eu/c/demo/adresar/{id}/summary.xml (.json)
where {id} is the identifier of the given company in the list of business partners. Currently, it is not possible to use any other identifier for filtering than {id}.
The ABRA Flexi response is then an overview of summary information as shown in the application:
{
"winstrom": {
"adresarSummary": {
"celkFakt": "1.2290034529E8",
"limitFakt": "0.0",
"neuzNap": "0.0",
"neuzNav": "24306.55",
"neuzObp": "80952.43",
"neuzObv": "134.31",
"neuzPpp": "0.0",
"neuzPpv": "0.0",
"nezaplaceno": "1.2283741422E8",
"nezaplacenoPoDatSplat": "1.2284548008E8",
"prumProdleva": "-12.75",
"splatText": ""
}
}
}
Failed requests
1. The specified/filtered object (company) does not exist
If the object cannot be found or does not exist, the API response is:
{
"winstrom": {
"@version": "1.0",
"success": "false",
"message": "Záznam nebyl v datovém zdroji nalezen: cz.winstrom.vo.adr.Adresar#1234"
}
}
2. The ID is entered incorrectly (ID must be a number — a database identifier only)
If an invalid ID is provided
Can't find record identified by 123A
3. An incorrect HTTP method was used — other than GET
The HTTP GET method must always be used for this call
405 Method not allowed
{
"winstrom": {
"@version": "1.0",
"success": "false"
}
}
FAQ
Need help?
If you have any questions about the application, please contact us at podporaflexi@abra.eu or via the chat window in the bottom right corner.

