Fiscal Years

Update Fiscal Year

PUT /api/.../fiscalyears/{id}

Updates a single fiscal year

Request Information

Parameters
Name Type Required Description
id Integer Yes The unique id assigned to the fiscal year.
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

True is returned upon success.

Example
application/json, text/json
true

HTTP Response Codes

Code Description
200 OK. Success