NEW API Management Portal

October 25,2021

Karmak has a new and improved APIM Portal with easier to use authentication and real time documentation to reduce errors.

All new APIs will be published within APIM.

If you are new to Unity and Karmak APIs, please head to portal.karmak.io to learn more.



A GET API to query the status of an accounting posting period.

To query closed Posting Periods, set IsOpen = NO and IsFuture = NO.

URL

/frw/AccountingPeriod
Field Definition Type
“AccountingPeriodID” Accounting Period Unique ID int
“PeriodString” Posting Period varchar(33)
“CorporationID” informational only int
“IsOpen” Determines if Posting Period is Open int
“IsFuture” Determines if Posting Period is Future int
“BeginDate” First day of Posting Period datetime
“EndDate” Last Day of Posting Period datetime
“IsFiscalPeriodOpen” Determines if Fiscal Year is open or closed bit

Sample Response

{
	"AccountingPeriodID": 75,
	"PeriodString": "01/2009",
	"CorporationID": 1,
	"IsOpen": 0,
	"IsFuture": 0,
	"BeginDate": "2009-01-01T00:00:00",
	"EndDate": "2009-01-31T00:00:00",
	"IsFiscalPeriodOpen": false
}