Fiscal Years

Create Fiscal Year

POST /api/.../fiscalyears

Creates a single fiscal year

Request Information

Parameters
Name Type Required Description
dtoFiscalYearInfo Fiscal Year Information Yes Define this parameter in the request body.
DtoFiscalYearInfo
Property Type Nullable Description
OrganizationID Int No The unique id assigned to the Organization.
FYStartDate DateTime Yes Fiscal Year Start Date
FYEndDate DateTime Yes Fiscal Year End Date
Name string No Fiscal Year name
Notes string Yes Fiscal Year notes
Example
application/json, text/json
{ 
  "FYStartDate": "2005-01-01T00:00:00-05:00",
  "FYEndDate": "2005-12-31T00:00:00-05:00",
  "OrganizationID": 5,
  "Name": "FY2005",
  "Notes": "test"
}

Response Information

New FiscalYearID is returned upon success.

Example
application/json, text/json
42

HTTP Response Codes

Code Description
200 OK. Success