GET api/AccountSavedAmount
Saved Invoices and Receipts total amount
Request Information
URI Parameters
None.
Body Parameters
AccountSavedAmountReqName | Description | Type | Additional information |
---|---|---|---|
Company |
The company name |
string |
Required String length: inclusive between 0 and 6 |
AccountCode |
Optional account code |
string |
String length: inclusive between 0 and 15 |
PageSize |
Optional paging parameter. Return x records per page |
integer |
None. |
PageNumber |
Optional paging parameter. Number of page to return |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "Company": "DEMO", "AccountCode": "2102020", "PageSize": 0, "PageNumber": 0 }
Response Information
Resource Description
AccountSavedAmountResName | Description | Type | Additional information |
---|---|---|---|
MsgControl |
Contains information about the response |
MsgControl |
None. |
AccountSavedAmountList |
List of accounts |
Collection of AccountSavedAmount |
None. |
Response Formats
application/json, text/json
Sample:
{ "MsgControl": { "result": 0, "Message": "Corresponding success and error message", "MethodName": "api/AccountSavedAmount GET", "AppName": "EsoftWebApi", "EsoftUser": "ESOFT", "User": "Username", "Password": "Password", "SystemDate": "2025-01-06T22:32:15.2189577+02:00", "GenList": [], "GenMsg1": "", "GenMsg2": "", "GenMsg3": "" }, "AccountSavedAmountList": [ { "AccountCode": "320001", "Amount": 255.5 }, { "AccountCode": "320002", "Amount": 100.0 } ] }