© 2024 Clarivate
POST /api/.../fiscalyears
Creates a single fiscal year
Name | Type | Required | Description |
---|---|---|---|
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"
}
New FiscalYearID is returned upon success.
42
Code | Description |
---|---|
200 | OK. Success |