Retrieves the properties and relationships of an accounting period object for Business Central.
HTTP request
Replace the URL prefix for Business Central depending on environment following the guideline.
GET businesscentralPrefix/companies({id})/accountingPeriods({id})
Request headers
| Header | Value |
|---|---|
| Authorization | Bearer {token}. Required. |
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK response code and an accountingPeriod object in the response body.
Example
Request
Here's an example of the request.
GET https://{businesscentralPrefix}/api/v2.0/companies({id})/accountingPeriods({id})
Response
Here's an example of the response.
{
"id": "12345",
"startingDate": "2025-01-01",
"name": "Q1 2025",
"newFiscalYear": false,
"closed": false,
"dateLocked": "2025-03-31",
"lastModifiedDateTime": "2025-04-01T12:00:00Z"
}