© 2024 Clarivate
PUT /api/.../fiscalyears/{id}
Updates a single fiscal year
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. |
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 |
{
"FYStartDate": "2005-01-01T00:00:00-05:00",
"FYEndDate": "2005-12-31T00:00:00-05:00",
"OrganizationID": 5,
"Name": "FY2005",
"Notes": "test"
}
True is returned upon success.
true
Code | Description |
---|---|
200 | OK. Success |