Fiscal Year
In Zoho CRM, the fiscal year setting helps organizations to configure their fiscal cycle based on the selected start month or end month.
Get Fiscal Year Settings
Purpose
To retrieve the details of fiscal year settings of your organization.
Endpoints
- GET /settings/fiscal_year
Request Details
Request URL
{api-domain}/crm/{version}/settings/fiscal_year
Header
Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52
Scope
scope=ZohoCRM.settings.fiscal_year.READ
Sample Request
Copiedcurl "https://www.zohoapis.com/crm/v8/settings/fiscal_year
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"
-X GETResponse JSON Keys
- display_based_onstringRepresents whether the fiscal year is based on start month or end month. 
- start_monthstringRepresents the start month of the fiscal year. 
Sample Response
Copied{
    "fiscal_year": {
        "display_based_on": "start_month",
        "start_month": "JANUARY",
        "id": "431581000000004272"
    }
}Possible Errors
- INVALID_URL_PATTERNHTTP 404Please check if the URL trying to access is a correct one 
 Resolution: The request URL specified is incorrect. Specify a valid request URL. Refer to request URL section above.
- OAUTH_SCOPE_MISMATCHHTTP 401Unauthorized 
 Resolution: Client does not have ZohoCRM.settings.fiscal_year.READ scope. Create a new client with valid scope. Refer to scope section above.
- NO_PERMISSIONHTTP 403Permission denied to read 
 Resolution: The user does not have permission to read fiscal year settings. Contact your system administrator.
- INTERNAL_ERRORHTTP 500Internal Server Error 
 Resolution: Unexpected and unhandled exception in Server. Contact support team.
- INVALID_REQUEST_METHODHTTP 400The http request method type is not a valid one 
 Resolution: You have specified an invalid HTTP method to access the API URL. Specify a valid request method. Refer to endpoints section above.
- AUTHORIZATION_FAILEDHTTP 400User does not have sufficient privilege to read fiscal year settings 
 Resolution: The user does not have the permission to retrieve fiscal year settings. Contact your system administrator.