Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Important
The finance reports API is announced as deprecated starting with Business Central 2026 release wave 2 and will be removed in Business Central 2027 release wave 1. We recommend that you transition to the Analytics API instead. Learn more in Analytics API overview.
Represents an accounting period in Business Central.
Note
For information about enabling APIs for Business Central see Enabling the APIs for Dynamics 365 Business Central.
Methods
| Method | Return Type | Description |
|---|---|---|
| GET accountingPeriod | accountingPeriod | Gets a accounting period object. |
Properties
| Property | Type | Description |
|---|---|---|
| id | GUID | The unique ID of the accounting period. Non-editable. |
| displayName | string | Specifies the accounting period's name. This name will appear on all sales documents for the accounting period. |
| startingDate | date | |
| endingDate | date | |
| newFiscalYear | boolean | |
| fiscalYearStartDate | date | |
| fiscalYearEndDate | date | |
| closed | boolean | |
| lastModifiedDateTime | datetime | The last datetime the accounting period was modified. Read-Only. |
JSON representation
Here is a JSON representation of the accountingPeriod resource.
{
"id": "GUID",
"displayName": "string",
"startingDate": "date",
"endingDate": "date",
"newFiscalYear": "boolean",
"fiscalYearStartDate": "date",
"fiscalYearEndDate": "date",
"closed": "boolean",
"lastModifiedDateTime": "datetime"
}