GET FinancialYear/Get/{id}
Gets a specific Financial Year based on the identifier sent through.
Request Information
URI Parameters
| Name | Type | Additional information | Description | 
|---|---|---|---|
| id | integer | Required | The ID of the Financial Year. | 
Body Parameters
None.
Response Information
Resource Description
The Financial Year based on the identifier.
Financial Year| Name | Type | Additional information | Description | 
|---|---|---|---|
| ID | integer | None. | |
| YearStart | date | None. | |
| YearEnd | date | None. | |
| IsCurrentYear | bool | None. | |
| Modified | nullable date | Read Only / System Generated | |
| Created | date | Read Only / System Generated | 
Response Formats
application/json, text/json
            Sample:
{
  "ID": 1,
  "YearStart": "2025-10-31",
  "YearEnd": "2025-10-31",
  "IsCurrentYear": true,
  "Modified": "2025-10-31",
  "Created": "2025-10-31"
}