Create Accounting Period
POST /accounting-periods
Description
Create a new accounting period.
Authentication
Bearer Token
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer {{token}} | Yes |
| Content-Type | application/json | Yes |
Request Body
{
"name": "FY 2026 - Q2",
"startDate": "2026-03-31T22:00:00.000+00:00",
"endDate": "2026-06-31T22:00:00.000+00:00",
"periodType": "QUARTER",
"status": null,
"notes": null,
"fiscalYearIdString": "053fca08-7628-4c0e-85a4-af5d9271ea7f",
"companyIdString": "4f0d7e42-897c-4561-8dd5-fd3c49b9f3d2"
}
| Field | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Name of the accounting period |
startDate | string (ISO 8601) | Yes | Start date of the period |
endDate | string (ISO 8601) | Yes | End date of the period |
periodType | string | Yes | Type of period (e.g., QUARTER, MONTH, YEAR) |
status | string | No | Status of the period |
notes | string | No | Additional notes |
fiscalYearIdString | string (UUID) | Yes | ID of the associated fiscal year |
companyIdString | string (UUID) | Yes | ID of the company |