Internal Server Error on GET https://www.zohoapis.com/crm/v2/Events

Internal Server Error on GET https://www.zohoapis.com/crm/v2/Events

When I try to get:
https://www.zohoapis.com/crm/v2/Events?page=729&per_page=1&fields=$recurrence_id,Recurring_Activity
response from API is:

  1. {
  2.     "code": "INTERNAL_ERROR",
  3.     "details": {},
  4.     "message": "Internal Server Error",
  5.     "status": "error"
  6. }
But request without Recurring_Activity field is ok. Sample:
https://www.zohoapis.com/crm/v2/Events?page=729&per_page=1&fields=Recurring_Activity

  1. {
  2.     "data": [
  3.         {
  4.             "id": "333359000009811735",
  5.             "$recurrence_id": "1341072000000"
  6.         }
  7.     ],
  8.     "info": {
  9.         "per_page": 1,
  10.         "count": 1,
  11.         "page": 729,
  12.         "more_records": true
  13.     }
  14. }
Response on request https://www.zohoapis.com/crm/v2/Events/333359000009811735 also is without Recurring_Activity field.

How to get Recurring_Activity field value from event?