Get incomeStatement
Important: Currently all requests to API v2.0 must append $schemaversion=2.0 to the request URL to work properly. This is to uptake the new improved $metadata model avaliable from Business Central 17. An update will be applied shortly to apply the schemaversion automatically to API v2.0. For all other APIs $schemaversion=1.0 will be the default, unless specified in the request URL with $schemaversion=2.0. A solution is being worked on, where the schemaversion will be defined in the extension.
Retrieve the properties and relationships of an income statement report object for Dynamics 365 Business Central.
HTTP request
Replace the URL prefix for Dynamics 365 Business Central depending on environment following the guideline.
GET businesscentralPrefix/companies({id})/incomeStatement
Request headers
Header | Value |
---|---|
Authorization | Bearer {token}. Required. |
Request body
Do not supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and an incomeStatement object in the response body.
Example
Request
Here is an example of the request.
GET https://{businesscentralPrefix}/api/v2.0/companies({id})/incomeStatement?$orderby=lineNumber&$filter=dateFilter ge 2019-01-01 and dateFilter le 2020-12-31
Response
Here is an example of the response.
Note
The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
{
"id": "bafbf171-44e3-ea11-bb43-000d3a2feca1",
"lineNumber": 10000,
"display": "Income",
"netChange": 0,
"lineType": "header",
"indentation": 0,
"dateFilter": "2020-08-21"
}