ZCRMSDK 2.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (174) hide show
  1. checksums.yaml +4 -4
  2. data/src/ZCRMSDK.rb +87 -2
  3. data/src/com/zoho/api/authenticator/oauth_token.rb +86 -31
  4. data/src/com/zoho/api/authenticator/store/db_store.rb +71 -29
  5. data/src/com/zoho/api/authenticator/store/file_store.rb +91 -21
  6. data/src/com/zoho/api/authenticator/store/token_store.rb +7 -0
  7. data/src/com/zoho/api/logger/sdk_logger.rb +18 -9
  8. data/src/com/zoho/crm/api/assignment_rules/api_exception.rb +121 -0
  9. data/src/com/zoho/crm/api/assignment_rules/assignment_rule.rb +215 -0
  10. data/src/com/zoho/crm/api/assignment_rules/assignment_rules_operations.rb +61 -0
  11. data/src/com/zoho/crm/api/assignment_rules/default_user.rb +80 -0
  12. data/src/com/zoho/crm/api/assignment_rules/response_handler.rb +10 -0
  13. data/src/com/zoho/crm/api/assignment_rules/response_wrapper.rb +63 -0
  14. data/src/com/zoho/crm/api/attachments/attachment.rb +42 -4
  15. data/src/com/zoho/crm/api/attachments/attachments_operations.rb +6 -6
  16. data/src/com/zoho/crm/api/blue_print/blue_print_operations.rb +2 -2
  17. data/src/com/zoho/crm/api/blue_print/escalation.rb +80 -0
  18. data/src/com/zoho/crm/api/blue_print/field.rb +1127 -0
  19. data/src/com/zoho/crm/api/blue_print/next_transition.rb +38 -0
  20. data/src/com/zoho/crm/api/blue_print/process_info.rb +4 -4
  21. data/src/com/zoho/crm/api/blue_print/transition.rb +19 -1
  22. data/src/com/zoho/crm/api/blue_print/validation_error.rb +57 -0
  23. data/src/com/zoho/crm/api/bulk_read/bulk_read_operations.rb +3 -3
  24. data/src/com/zoho/crm/api/bulk_read/criteria.rb +20 -0
  25. data/src/com/zoho/crm/api/bulk_read/query.rb +5 -4
  26. data/src/com/zoho/crm/api/bulk_write/bulk_write_operations.rb +3 -3
  27. data/src/com/zoho/crm/api/bulk_write/resource.rb +24 -4
  28. data/src/com/zoho/crm/api/contact_roles/contact_roles_operations.rb +7 -7
  29. data/src/com/zoho/crm/api/currencies/currencies_operations.rb +7 -7
  30. data/src/com/zoho/crm/api/custom_views/criteria.rb +5 -4
  31. data/src/com/zoho/crm/api/custom_views/custom_view.rb +100 -41
  32. data/src/com/zoho/crm/api/custom_views/custom_views_operations.rb +2 -2
  33. data/src/com/zoho/crm/api/custom_views/{shared_details.rb → shared_to.rb} +2 -2
  34. data/src/com/zoho/crm/api/dc/au_datacenter.rb +3 -3
  35. data/src/com/zoho/crm/api/dc/cn_datacenter.rb +3 -3
  36. data/src/com/zoho/crm/api/dc/datacenter.rb +3 -2
  37. data/src/com/zoho/crm/api/dc/eu_datacenter.rb +3 -3
  38. data/src/com/zoho/crm/api/dc/in_datacenter.rb +3 -3
  39. data/src/com/zoho/crm/api/dc/us_datacenter.rb +3 -3
  40. data/src/com/zoho/crm/api/email_templates/api_exception.rb +121 -0
  41. data/src/com/zoho/crm/api/email_templates/attachment.rb +118 -0
  42. data/src/com/zoho/crm/api/email_templates/email_template.rb +390 -0
  43. data/src/com/zoho/crm/api/email_templates/email_templates_operations.rb +61 -0
  44. data/src/com/zoho/crm/api/email_templates/response_handler.rb +10 -0
  45. data/src/com/zoho/crm/api/email_templates/response_wrapper.rb +83 -0
  46. data/src/com/zoho/crm/api/field_attachments/api_exception.rb +121 -0
  47. data/src/com/zoho/crm/api/field_attachments/body_wrapper.rb +62 -0
  48. data/src/com/zoho/crm/api/field_attachments/field_attachments_operations.rb +52 -0
  49. data/src/com/zoho/crm/api/field_attachments/file_body_wrapper.rb +64 -0
  50. data/src/com/zoho/crm/api/field_attachments/response_handler.rb +10 -0
  51. data/src/com/zoho/crm/api/fields/external.rb +99 -0
  52. data/src/com/zoho/crm/api/fields/field.rb +215 -61
  53. data/src/com/zoho/crm/api/fields/fields_operations.rb +2 -2
  54. data/src/com/zoho/crm/api/fields/history_tracking.rb +80 -0
  55. data/src/com/zoho/crm/api/fields/maps.rb +80 -0
  56. data/src/com/zoho/crm/api/fields/multi_module_lookup.rb +99 -0
  57. data/src/com/zoho/crm/api/fields/multi_select_lookup.rb +19 -0
  58. data/src/com/zoho/crm/api/fields/multi_user_lookup.rb +175 -0
  59. data/src/com/zoho/crm/api/fields/pick_list_value.rb +19 -0
  60. data/src/com/zoho/crm/api/fields/related_details.rb +19 -0
  61. data/src/com/zoho/crm/api/files/file_operations.rb +2 -2
  62. data/src/com/zoho/crm/api/initializer.rb +45 -17
  63. data/src/com/zoho/crm/api/inventory_templates/api_exception.rb +121 -0
  64. data/src/com/zoho/crm/api/inventory_templates/inventory_template.rb +352 -0
  65. data/src/com/zoho/crm/api/inventory_templates/inventory_templates_operations.rb +82 -0
  66. data/src/com/zoho/crm/api/inventory_templates/response_handler.rb +10 -0
  67. data/src/com/zoho/crm/api/inventory_templates/response_wrapper.rb +83 -0
  68. data/src/com/zoho/crm/api/layouts/layout.rb +38 -0
  69. data/src/com/zoho/crm/api/layouts/layouts_operations.rb +2 -2
  70. data/src/com/zoho/crm/api/layouts/section.rb +19 -0
  71. data/src/com/zoho/crm/api/modules/module.rb +57 -0
  72. data/src/com/zoho/crm/api/modules/modules_operations.rb +4 -4
  73. data/src/com/zoho/crm/api/notes/note.rb +19 -0
  74. data/src/com/zoho/crm/api/notes/notes_operations.rb +7 -7
  75. data/src/com/zoho/crm/api/notification/notification_operations.rb +6 -6
  76. data/src/com/zoho/crm/api/org/hierarchy_preference.rb +61 -0
  77. data/src/com/zoho/crm/api/org/org.rb +38 -0
  78. data/src/com/zoho/crm/api/org/org_operations.rb +2 -2
  79. data/src/com/zoho/crm/api/pipeline/action_handler.rb +10 -0
  80. data/src/com/zoho/crm/api/pipeline/action_response.rb +10 -0
  81. data/src/com/zoho/crm/api/pipeline/action_wrapper.rb +63 -0
  82. data/src/com/zoho/crm/api/pipeline/api_exception.rb +129 -0
  83. data/src/com/zoho/crm/api/pipeline/body_wrapper.rb +61 -0
  84. data/src/com/zoho/crm/api/pipeline/forecast_category.rb +80 -0
  85. data/src/com/zoho/crm/api/pipeline/pick_list_value.rb +175 -0
  86. data/src/com/zoho/crm/api/pipeline/pipeline.rb +213 -0
  87. data/src/com/zoho/crm/api/pipeline/pipeline_operations.rb +165 -0
  88. data/src/com/zoho/crm/api/pipeline/response_handler.rb +10 -0
  89. data/src/com/zoho/crm/api/pipeline/response_wrapper.rb +63 -0
  90. data/src/com/zoho/crm/api/pipeline/stage.rb +80 -0
  91. data/src/com/zoho/crm/api/pipeline/success_response.rb +123 -0
  92. data/src/com/zoho/crm/api/pipeline/transfer_action_handler.rb +10 -0
  93. data/src/com/zoho/crm/api/pipeline/transfer_action_response.rb +10 -0
  94. data/src/com/zoho/crm/api/pipeline/transfer_action_wrapper.rb +63 -0
  95. data/src/com/zoho/crm/api/pipeline/transfer_and_delete_wrapper.rb +61 -0
  96. data/src/com/zoho/crm/api/pipeline/transfer_pipe_line.rb +80 -0
  97. data/src/com/zoho/crm/api/profiles/category.rb +19 -0
  98. data/src/com/zoho/crm/api/profiles/default_view.rb +99 -0
  99. data/src/com/zoho/crm/api/profiles/profile.rb +49 -11
  100. data/src/com/zoho/crm/api/profiles/profiles_operations.rb +2 -2
  101. data/src/com/zoho/crm/api/query/query_operations.rb +1 -1
  102. data/src/com/zoho/crm/api/record/api_exception.rb +2 -0
  103. data/src/com/zoho/crm/api/record/body_wrapper.rb +0 -19
  104. data/src/com/zoho/crm/api/record/count_handler.rb +10 -0
  105. data/src/com/zoho/crm/api/record/count_wrapper.rb +63 -0
  106. data/src/com/zoho/crm/api/record/field.rb +17 -17
  107. data/src/com/zoho/crm/api/record/image_upload.rb +213 -0
  108. data/src/com/zoho/crm/api/record/line_tax.rb +19 -0
  109. data/src/com/zoho/crm/api/record/mass_update_body_wrapper.rb +4 -4
  110. data/src/com/zoho/crm/api/record/mass_update_territory.rb +80 -0
  111. data/src/com/zoho/crm/api/record/multi_select_lookup.rb +99 -0
  112. data/src/com/zoho/crm/api/record/multi_select_picklist.rb +80 -0
  113. data/src/com/zoho/crm/api/record/price_book.rb +31 -0
  114. data/src/com/zoho/crm/api/record/record_operations.rb +196 -26
  115. data/src/com/zoho/crm/api/record/tax.rb +80 -0
  116. data/src/com/zoho/crm/api/record/territory.rb +70 -12
  117. data/src/com/zoho/crm/api/record/widget.rb +80 -0
  118. data/src/com/zoho/crm/api/record/wizard.rb +80 -0
  119. data/src/com/zoho/crm/api/related_lists/related_lists_operations.rb +2 -2
  120. data/src/com/zoho/crm/api/related_records/related_records_operations.rb +6 -6
  121. data/src/com/zoho/crm/api/request_proxy.rb +3 -4
  122. data/src/com/zoho/crm/api/roles/roles_operations.rb +2 -2
  123. data/src/com/zoho/crm/api/sdk_config.rb +2 -68
  124. data/src/com/zoho/crm/api/send_mail/action_handler.rb +10 -0
  125. data/src/com/zoho/crm/api/send_mail/action_response.rb +10 -0
  126. data/src/com/zoho/crm/api/send_mail/action_wrapper.rb +63 -0
  127. data/src/com/zoho/crm/api/send_mail/api_exception.rb +125 -0
  128. data/src/com/zoho/crm/api/send_mail/body_wrapper.rb +61 -0
  129. data/src/com/zoho/crm/api/send_mail/data_subject_request.rb +80 -0
  130. data/src/com/zoho/crm/api/send_mail/inventory_details.rb +100 -0
  131. data/src/com/zoho/crm/api/send_mail/mail.rb +423 -0
  132. data/src/com/zoho/crm/api/send_mail/response_handler.rb +10 -0
  133. data/src/com/zoho/crm/api/send_mail/response_wrapper.rb +63 -0
  134. data/src/com/zoho/crm/api/send_mail/send_mail_operations.rb +61 -0
  135. data/src/com/zoho/crm/api/send_mail/success_response.rb +121 -0
  136. data/src/com/zoho/crm/api/send_mail/template.rb +10 -0
  137. data/src/com/zoho/crm/api/send_mail/user_address.rb +137 -0
  138. data/src/com/zoho/crm/api/share_records/share_records_operations.rb +4 -4
  139. data/src/com/zoho/crm/api/tags/tag.rb +19 -0
  140. data/src/com/zoho/crm/api/tags/tags_operations.rb +11 -11
  141. data/src/com/zoho/crm/api/taxes/taxes_operations.rb +6 -6
  142. data/src/com/zoho/crm/api/territories/response_wrapper.rb +20 -0
  143. data/src/com/zoho/crm/api/territories/territories_operations.rb +2 -2
  144. data/src/com/zoho/crm/api/territories/territory.rb +61 -23
  145. data/src/com/zoho/crm/api/users/user.rb +34 -0
  146. data/src/com/zoho/crm/api/users/users_operations.rb +6 -6
  147. data/src/com/zoho/crm/api/util/api_http_connector.rb +6 -5
  148. data/src/com/zoho/crm/api/util/common_api_handler.rb +5 -3
  149. data/src/com/zoho/crm/api/util/constants.rb +140 -15
  150. data/src/com/zoho/crm/api/util/converter.rb +30 -7
  151. data/src/com/zoho/crm/api/util/data_type_converter.rb +8 -2
  152. data/src/com/zoho/crm/api/util/form_data_converter.rb +4 -15
  153. data/src/com/zoho/crm/api/util/json_converter.rb +7 -9
  154. data/src/com/zoho/crm/api/util/module_fields_handler.rb +1 -1
  155. data/src/com/zoho/crm/api/util/utility.rb +274 -87
  156. data/src/com/zoho/crm/api/variable_groups/variable_groups_operations.rb +3 -3
  157. data/src/com/zoho/crm/api/variables/variables_operations.rb +9 -9
  158. data/src/com/zoho/crm/api/wizards/api_exception.rb +121 -0
  159. data/src/com/zoho/crm/api/wizards/button.rb +252 -0
  160. data/src/com/zoho/crm/api/wizards/chart_data.rb +118 -0
  161. data/src/com/zoho/crm/api/wizards/connection.rb +80 -0
  162. data/src/com/zoho/crm/api/wizards/container.rb +119 -0
  163. data/src/com/zoho/crm/api/wizards/node.rb +118 -0
  164. data/src/com/zoho/crm/api/wizards/response_handler.rb +10 -0
  165. data/src/com/zoho/crm/api/wizards/response_wrapper.rb +63 -0
  166. data/src/com/zoho/crm/api/wizards/screen.rb +99 -0
  167. data/src/com/zoho/crm/api/wizards/segment.rb +176 -0
  168. data/src/com/zoho/crm/api/wizards/transition.rb +80 -0
  169. data/src/com/zoho/crm/api/wizards/wizard.rb +273 -0
  170. data/src/com/zoho/crm/api/wizards/wizards_operations.rb +61 -0
  171. data/src/resources/JSONDetails.json +1 -1
  172. data/src/version.rb +1 -1
  173. metadata +92 -7
  174. data/src/com/zoho/crm/api/record/inventory_line_items.rb +0 -235
@@ -0,0 +1,61 @@
1
+ require_relative '../param'
2
+ require_relative '../parameter_map'
3
+ require_relative '../exception/sdk_exception'
4
+ require_relative '../util/api_response'
5
+ require_relative '../util/common_api_handler'
6
+ require_relative '../util/constants'
7
+
8
+ module Wizards
9
+ class WizardsOperations
10
+
11
+ # Creates an instance of WizardsOperations
12
+ def initialize
13
+ end
14
+
15
+ # The method to get wizards
16
+ # @return An instance of APIResponse
17
+ # @raise SDKException
18
+ def get_wizards
19
+ handler_instance = Handler::CommonAPIHandler.new
20
+ api_path = ''
21
+ api_path = api_path + '/crm/v2.1/settings/wizards'
22
+ handler_instance.api_path = api_path
23
+ handler_instance.http_method = Constants::REQUEST_METHOD_GET
24
+ handler_instance.category_method = 'READ'
25
+ require_relative 'response_handler'
26
+ handler_instance.api_call(ResponseHandler.name, 'application/json')
27
+ end
28
+
29
+ # The method to get wizard by id
30
+ # @param wizard_id [Integer] A Integer
31
+ # @param param_instance [ParameterMap] An instance of ParameterMap
32
+ # @return An instance of APIResponse
33
+ # @raise SDKException
34
+ def get_wizard_by_id(wizard_id, param_instance=nil)
35
+ if !wizard_id.is_a? Integer
36
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: wizard_id EXPECTED TYPE: Integer', nil, nil)
37
+ end
38
+ if param_instance!=nil and !param_instance.is_a? ParameterMap
39
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: param_instance EXPECTED TYPE: ParameterMap', nil, nil)
40
+ end
41
+ handler_instance = Handler::CommonAPIHandler.new
42
+ api_path = ''
43
+ api_path = api_path + '/crm/v2.1/settings/wizards/'
44
+ api_path = api_path + wizard_id.to_s
45
+ handler_instance.api_path = api_path
46
+ handler_instance.http_method = Constants::REQUEST_METHOD_GET
47
+ handler_instance.category_method = 'READ'
48
+ handler_instance.param = param_instance
49
+ require_relative 'response_handler'
50
+ handler_instance.api_call(ResponseHandler.name, 'application/json')
51
+ end
52
+
53
+ class GetWizardbyIDParam
54
+ @@layout_id = Param.new('layout_id', 'com.zoho.crm.api.Wizards.GetWizardbyIDParam')
55
+ def self.layout_id
56
+ @@layout_id
57
+ end
58
+ end
59
+
60
+ end
61
+ end
@@ -1 +1 @@
1
- {"com.zoho.crm.api.bulk_write.BulkWriteResponse":{"result":{"structure_name":"com.zoho.crm.api.bulk_write.Result","name":"result","type":"com.zoho.crm.api.bulk_write.Result"},"created_time":{"name":"created_time","type":"DateTime"},"resource":{"structure_name":"com.zoho.crm.api.bulk_write.Resource","name":"resource","type":"List"},"character_encoding":{"name":"character_encoding","type":"String"},"callback":{"structure_name":"com.zoho.crm.api.bulk_write.CallBack","name":"callback","type":"com.zoho.crm.api.bulk_write.CallBack"},"id":{"name":"id","type":"Long"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"operation":{"name":"operation","type":"String"},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.attachments.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["attachment uploaded successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notes.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"Modified_Time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},{"name":"Created_Time","type":"DateTime"},{"name":"id","type":"Long"},{"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"}],"name":"details","type":"Map"},"message":{"values":["record added","record updated","record deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.profiles.ResponseHandler":{"classes":["com.zoho.crm.api.profiles.APIException","com.zoho.crm.api.profiles.ResponseWrapper"],"interface":true},"com.zoho.crm.api.modules.GetModulesHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.currencies.ActionResponse":{"classes":["com.zoho.crm.api.currencies.SuccessResponse","com.zoho.crm.api.currencies.APIException"],"interface":true},"com.zoho.crm.api.record.ActionHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.ActionWrapper"],"interface":true},"com.zoho.crm.api.variables.ResponseHandler":{"classes":["com.zoho.crm.api.variables.ResponseWrapper","com.zoho.crm.api.variables.APIException"],"interface":true},"com.zoho.crm.api.custom_views.Range":{"from":{"name":"from","type":"Integer"},"to":{"name":"to","type":"Integer"}},"com.zoho.crm.api.bulk_read.ActionResponse":{"classes":["com.zoho.crm.api.bulk_read.SuccessResponse","com.zoho.crm.api.bulk_read.APIException"],"interface":true},"com.zoho.crm.api.variables.GetVariablesParam":{"group":{"name":"group","type":"String","required":true}},"com.zoho.crm.api.attachments.DeleteAttachmentsParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.fields.GetFieldParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.bulk_read.JobDetail":{"result":{"structure_name":"com.zoho.crm.api.bulk_read.Result","name":"result","type":"com.zoho.crm.api.bulk_read.Result"},"created_time":{"name":"created_time","type":"DateTime"},"file_type":{"name":"file_type","type":"String"},"query":{"structure_name":"com.zoho.crm.api.bulk_read.Query","name":"query","type":"com.zoho.crm.api.bulk_read.Query"},"id":{"name":"id","type":"Long","primary":true},"state":{"values":["COMPLETED","IN PROGRESS","ADDED","FAILURE"],"name":"state","type":"com.zoho.crm.api.util.Choice"},"operation":{"name":"operation","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"}},"com.zoho.crm.api.roles.ResponseWrapper":{"roles":{"structure_name":"com.zoho.crm.api.roles.Role","name":"roles","type":"List"}},"com.zoho.crm.api.blue_print.NextTransition":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.related_records.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.blue_print.ResponseHandler":{"classes":["com.zoho.crm.api.blue_print.ResponseWrapper","com.zoho.crm.api.blue_print.APIException"],"interface":true},"com.zoho.crm.api.bulk_write.File":{"skipped_count":{"name":"skipped_count","type":"Integer"},"updated_count":{"name":"updated_count","type":"Integer"},"total_count":{"name":"total_count","type":"Integer"},"name":{"name":"name","type":"String"},"added_count":{"name":"added_count","type":"Integer"},"status":{"values":["ADDED","IN PROGRESS","COMPLETED","SKIPPED","FAILED"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.Criteria":{"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com.zoho.crm.api.util.Choice"},"field":{"name":"field","type":"String"},"group_operator":{"values":["and","or"],"name":"group_operator","type":"com.zoho.crm.api.util.Choice"},"value":{"name":"value","type":"Object"},"group":{"lookup":true,"structure_name":"com.zoho.crm.api.record.Criteria","name":"group","type":"List"}},"com.zoho.crm.api.record.MassUpdateActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.MassUpdateActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.record.ConvertActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.ConvertActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.share_records.DeleteActionHandler":{"classes":["com.zoho.crm.api.share_records.APIException","com.zoho.crm.api.share_records.DeleteActionWrapper"],"interface":true},"com.zoho.crm.api.fields.MultiSelectLookup":{"display_label":{"name":"display_label","type":"String"},"linking_module":{"name":"linking_module","type":"String"},"lookup_apiname":{"name":"lookup_apiname","type":"String"},"api_name":{"name":"api_name","type":"String"},"connectedlookup_apiname":{"name":"connectedlookup_apiname","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.Participants":{"name":{"name":"name","type":"String"},"invited":{"name":"invited","type":"Boolean"},"type":{"name":"type","type":"String","required":true},"email":{"name":"Email","type":"String"},"participant":{"name":"participant","type":"String","required":true},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.notes.APIException":{"code":{"values":["NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","MANDATORY_NOT_FOUND","INVALID_DATA","NOT_SUPPORTED","REQUIRED_PARAM_MISSING"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"api_name","type":"String"},{"name":"param","type":"String"},{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the id given seems to be invalid","One of the expected parameter is missing","record not deleted","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.tags.UpdateTagParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.tags.RemoveTagsFromMultipleRecordsParam":{"ids":{"name":"ids","type":"Long","required":true},"tag_names":{"name":"tag_names","type":"String","required":true}},"com.zoho.crm.api.related_records.GetRelatedRecordHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.record.SearchRecordsParam":{"per_page":{"name":"per_page","type":"Integer"},"approved":{"name":"approved","type":"String"},"phone":{"name":"phone","type":"String"},"converted":{"name":"converted","type":"String"},"criteria":{"name":"criteria","type":"String"},"page":{"name":"page","type":"Integer"},"word":{"name":"word","type":"String"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.variables.DeleteVariablesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.users.ActionResponse":{"classes":["com.zoho.crm.api.users.SuccessResponse","com.zoho.crm.api.users.APIException"],"interface":true},"com.zoho.crm.api.currencies.BaseCurrencyWrapper":{"base_currency":{"structure_name":"com.zoho.crm.api.currencies.Currency","name":"base_currency","type":"com.zoho.crm.api.currencies.Currency","required":true}},"com.zoho.crm.api.tags.ActionWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.ActionResponse","name":"tags","type":"List"}},"com.zoho.crm.api.record.GetDeletedRecordsParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.territories.ResponseHandler":{"classes":["com.zoho.crm.api.territories.APIException","com.zoho.crm.api.territories.ResponseWrapper"],"interface":true},"com.zoho.crm.api.notification.ActionHandler":{"classes":["com.zoho.crm.api.notification.APIException","com.zoho.crm.api.notification.ActionWrapper"],"interface":true},"com.zoho.crm.api.taxes.Preference":{"auto_populate_tax":{"name":"auto_populate_tax","type":"Boolean"},"modify_tax_rates":{"name":"modify_tax_rates","type":"Boolean"}},"com.zoho.crm.api.profiles.Category":{"display_label":{"name":"display_label","type":"String"},"permissions_details":{"name":"permissions_details","type":"List"},"name":{"name":"name","type":"String"}},"com.zoho.crm.api.tags.RecordActionResponse":{"classes":["com.zoho.crm.api.tags.SuccessResponse","com.zoho.crm.api.tags.APIException"],"interface":true},"com.zoho.crm.api.blue_print.BodyWrapper":{"blueprint":{"structure_name":"com.zoho.crm.api.blue_print.BluePrint","name":"blueprint","max-length":1,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.users.ActionHandler":{"classes":["com.zoho.crm.api.users.ActionWrapper","com.zoho.crm.api.users.APIException"],"interface":true},"com.zoho.crm.api.tags.AddTagsToRecordParam":{"over_write":{"name":"over_write","type":"String"},"tag_names":{"name":"tag_names","type":"String","required":true}},"com.zoho.crm.api.record.RemindAt":{"alarm":{"name":"ALARM","type":"String","required":true}},"com.zoho.crm.api.layouts.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","REQUIRED_PARAM_MISSING","INTERNAL_ERROR","NO_PERMISSION","INVALID_DATA"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","User does not have permission to access this layout.","Layout does not belongs to the given module","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.DownloadHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.users.CustomizeInfo":{"notes_desc":{"name":"notes_desc","type":"Boolean"},"show_right_panel":{"name":"show_right_panel","type":"String"},"bc_view":{"name":"bc_view","type":"String"},"show_home":{"name":"show_home","type":"Boolean"},"show_detail_view":{"name":"show_detail_view","type":"Boolean"},"unpin_recent_item":{"name":"unpin_recent_item","type":"String"}},"com.zoho.crm.api.share_records.DeleteActionResponse":{"classes":["com.zoho.crm.api.share_records.SuccessResponse","com.zoho.crm.api.share_records.APIException"],"interface":true},"com.zoho.crm.api.bulk_read.ResponseHandler":{"classes":["com.zoho.crm.api.bulk_read.ResponseWrapper","com.zoho.crm.api.bulk_read.APIException","com.zoho.crm.api.bulk_read.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.notification.ResponseHandler":{"classes":["com.zoho.crm.api.notification.APIException","com.zoho.crm.api.notification.ResponseWrapper"],"interface":true},"com.zoho.crm.api.query.APIException":{"code":{"values":["INVALID_QUERY","OAUTH_SCOPE_MISMATCH","SYNTAX_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"near","type":"String"},{"name":"column","type":"Integer"},{"name":"line","type":"Integer"},{"name":"clause","type":"String"},{"name":"by","type":"String"},{"name":"limit","type":"Integer"},{"name":"column_name","type":"String"},{"name":"reason","type":"String"},{"name":"module","type":"String"},{"name":"data_type","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"operator","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid query formed","value given seems to be invalid for the column","data type not supported","column given seems to be invalid","invalid oauth scope to access this URL","limit exceeded","given coql query not supported","select columns limit exceeded","join limit exceeded","missing clause","error occured while parsing the query","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the module name given seems to be invalid","duplicate data","required field not found","invalid data","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.org.ResponseHandler":{"classes":["com.zoho.crm.api.org.ResponseWrapper","com.zoho.crm.api.org.APIException"],"interface":true},"com.zoho.crm.api.users.User":{"country":{"name":"country","type":"String"},"customize_info":{"lookup":true,"structure_name":"com.zoho.crm.api.users.CustomizeInfo","name":"customize_info","type":"com.zoho.crm.api.users.CustomizeInfo"},"role":{"lookup":true,"structure_name":"com.zoho.crm.api.roles.Role","name":"role","type":"com.zoho.crm.api.roles.Role","required":true},"signature":{"name":"signature","type":"String"},"city":{"name":"city","type":"String"},"name_format":{"name":"name_format","type":"String"},"language":{"name":"language","type":"String"},"reporting_to":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Reporting_To","type":"com.zoho.crm.api.users.User"},"locale":{"name":"locale","type":"String"},"microsoft":{"name":"microsoft","type":"Boolean"},"personal_account":{"name":"personal_account","type":"Boolean"},"isonline":{"name":"Isonline","type":"Boolean"},"default_tab_group":{"name":"default_tab_group","type":"String"},"street":{"name":"street","type":"String"},"currency":{"name":"Currency","type":"String"},"theme":{"lookup":true,"structure_name":"com.zoho.crm.api.users.Theme","name":"theme","type":"com.zoho.crm.api.users.Theme"},"state":{"name":"state","type":"String"},"fax":{"name":"fax","type":"String"},"country_locale":{"name":"country_locale","type":"String"},"first_name":{"name":"first_name","type":"String"},"email":{"name":"email","type":"String","required":true},"decimal_separator":{"name":"decimal_separator","type":"String"},"zip":{"name":"zip","type":"String"},"website":{"name":"website","type":"String"},"time_format":{"name":"time_format","type":"String"},"offset":{"name":"offset","type":"Long"},"profile":{"lookup":true,"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profile","type":"com.zoho.crm.api.profiles.Profile","required":true},"mobile":{"name":"mobile","type":"String"},"last_name":{"name":"last_name","type":"String","required":true},"time_zone":{"name":"time_zone","type":"String"},"zuid":{"name":"zuid","type":"String"},"confirm":{"name":"confirm","type":"Boolean"},"full_name":{"name":"full_name","type":"String"},"territories":{"lookup":true,"structure_name":"com.zoho.crm.api.users.Territory","name":"territories","type":"List"},"phone":{"name":"phone","type":"String"},"dob":{"name":"dob","type":"String"},"name":{"name":"name","type":"String"},"date_format":{"name":"date_format","type":"String"},"alias_1":{"name":"alias","type":"String"},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.bulk_write.UploadFileHeader":{"feature":{"values":["bulk-write"],"name":"feature","type":"String"},"X_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.custom_views.Criteria":{"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com.zoho.crm.api.util.Choice"},"field":{"name":"field","type":"String"},"group_operator":{"values":["and","or"],"name":"group_operator","type":"com.zoho.crm.api.util.Choice"},"value":{"name":"value","type":"Object"},"group":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"group","type":"List"}},"com.zoho.crm.api.tags.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"created_time","type":"DateTime"},{"name":"modified_time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},{"name":"id","type":"Long"},{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},{"name":"tags","type":"List"}],"name":"details","type":"Map"},"message":{"values":["tags created successfully","tags updated successfully","tags deleted successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.currencies.ResponseHandler":{"classes":["com.zoho.crm.api.currencies.ResponseWrapper","com.zoho.crm.api.currencies.APIException"],"interface":true},"com.zoho.crm.api.record.LineItemProduct":{"name":{"name":"name","type":"String"},"currency":{"name":"Currency","type":"String"},"product_code":{"name":"Product_Code","type":"String"}},"com.zoho.crm.api.related_lists.ResponseHandler":{"classes":["com.zoho.crm.api.related_lists.ResponseWrapper","com.zoho.crm.api.related_lists.APIException"],"interface":true},"com.zoho.crm.api.related_records.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.related_records.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.share_records.ResponseWrapper":{"share":{"structure_name":"com.zoho.crm.api.share_records.ShareRecord","name":"share","type":"List"},"shareable_user":{"structure_name":"com.zoho.crm.api.users.User","name":"shareable_user","type":"List"}},"com.zoho.crm.api.attachments.UploadLinkAttachmentParam":{"attachmentUrl":{"name":"attachmentUrl","type":"String"}},"com.zoho.crm.api.org.LicenseDetails":{"paid_expiry":{"name":"paid_expiry","type":"DateTime"},"users_license_purchased":{"name":"users_license_purchased","type":"Long"},"trial_type":{"name":"trial_type","type":"String"},"trial_expiry":{"name":"trial_expiry","type":"String"},"paid":{"name":"paid","type":"Boolean"},"paid_type":{"name":"paid_type","type":"String"}},"com.zoho.crm.api.share_records.ResponseHandler":{"classes":["com.zoho.crm.api.share_records.APIException","com.zoho.crm.api.share_records.ResponseWrapper"],"interface":true},"com.zoho.crm.api.variables.GetVariableByIDParam":{"group":{"name":"group","type":"String","required":true}},"com.zoho.crm.api.attachments.Attachment":{"owner":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Owner","type":"com.zoho.crm.api.users.User"},"created_time":{"name":"Created_Time","type":"DateTime"},"file_name":{"name":"File_Name","type":"String"},"editable":{"name":"$editable","type":"Boolean"},"se_module":{"name":"$se_module","type":"String"},"description":{"name":"description","type":"String"},"type":{"name":"$type","type":"String"},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"size":{"name":"Size","type":"Long"},"parent_id":{"lookup":true,"structure_name":"com.zoho.crm.api.record.Record","name":"Parent_Id","type":"com.zoho.crm.api.record.Record"},"file_id":{"name":"$file_id","type":"String"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},"link_url":{"name":"$link_url","type":"String"},"state":{"name":"$state","type":"String"},"id":{"name":"id","type":"Long","primary":true},"category":{"name":"category","type":"String"}},"com.zoho.crm.api.roles.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.bulk_write.Result":{"download_url":{"name":"download_url","type":"String"}},"com.zoho.crm.api.profiles.Section":{"name":{"name":"name","type":"String"},"categories":{"structure_name":"com.zoho.crm.api.profiles.Category","name":"categories","type":"List"}},"com.zoho.crm.api.notes.ActionResponse":{"classes":["com.zoho.crm.api.notes.SuccessResponse","com.zoho.crm.api.notes.APIException"],"interface":true},"com.zoho.crm.api.tags.CountWrapper":{"count":{"name":"count","type":"String"}},"com.zoho.crm.api.files.GetFileParam":{"id":{"name":"id","type":"String","required":true}},"com.zoho.crm.api.tags.ResponseHandler":{"classes":["com.zoho.crm.api.tags.ResponseWrapper","com.zoho.crm.api.tags.APIException"],"interface":true},"com.zoho.crm.api.files.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"name","type":"String"},{"name":"id","type":"String"}],"name":"details","type":"Map"},"message":{"values":["uploaded Succeessfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.attachments.ActionHandler":{"classes":["com.zoho.crm.api.attachments.APIException","com.zoho.crm.api.attachments.ActionWrapper"],"interface":true},"com.zoho.crm.api.record.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.bulk_read.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_SERVICE_NAME","INVALID_BULK_OPERATION","RESOURCE_NOT_FOUND","MEDIA_TYPE_NOT_SUPPORTED","REQUEST_BODY_NOT_READABLE","REQUEST_BODY_IS_EMPTY","MODULE_NOT_AVAILABLE","NOT_SUPPORTED_FEATURE","NO_PERMISSION","MODULE_NOT_SUPPORTED","JOB_NOT_SUPPORTED","QUERY_NOT_SUPPORTED","INVALID_CALLBACK_URL","INVALID_CALLBACK_METHOD","JOIN_LIMIT_EXCEEDED","CRITERIA_NOT_SUPPORTED","INVALID_CRITERIA","AMBIGUOUS_CRITERIA","AMBIGUOUS_GROUP_IN_CRITERIA","CRITERIA_LIMIT_EXCEEDED","FIELD_IN_CRITERIA_NOT_SUPPORTED","FIELD_AND_COMPARATOR_IN_CRITERIA_NOT_COMPATIBLE","FIELD_IN_CRITERIA_NOT_AVAILABLE","FIELD_COMPARATOR_IN_CRITERIA_NOT_SUPPORTED","VALUE_IN_CRITERIA_NOT_SUPPORTED","FIELD_AND_VALUE_IN_CRITERIA_NOT_COMPATIBLE","COMPARATOR_AND_VALUE_IN_CRITERIA_NOT_COMPATIBLE","COMPARATOR_AND_ENCRYPTED_VALUE_IN_CRITERIA_NOT_COMPATIBLE","GROUP_OPERATOR_NOT_SUPPORTED","FIELD_NOT_AVAILABLE","FIELD_NOT_SUPPORTED","VALUE_LIMIT_EXCEEDED_IN_CRITERIA","PAGE_NOT_SUPPORTED","PAGE_RANGE_EXCEEDED","TOO_MANY_REQUESTS","CALLBACK_FAILURE","INTERNAL_SERVER_ERROR","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"resource","type":"String"},{"name":"message","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"info_message","type":"String"},{"name":"parent_api_name","type":"String"},{"name":"comparator","type":"String"},{"name":"value","type":"String"},{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Provided service name %s is not valid/not supported","Requested operation is an invalid bulk operation","record not in process","The requested resource doesn't exist.","Media type is not supported.","Unable to parse the request body.","Request body is empty.","Requested module '%s' is not available.","Feature is not supported"," permission denied","Invalid module for the query. Module '%s' is not supported.","Invalid bulk %s job.","Invalid query for bulk %s job. Query '%s' is not supported.","Invalid URL '%s' for callback.","Invalid request method %s for callback.","Join limit exceeded for the query. Maximum number of joins supported in a query is %d","Invalid criteria for the query. Criteria %s is not supported.","Invalid criteria %s for the query.","Ambiguous criteria %s. Criteria can have either {group"," group_operator} or {api_name"," comparator"," value}.","Ambiguous group in criteria %s. Group should be used only when there are more than one criteria","Number of criteria exceeded the maximum limit of %d","Field api name '%s' for criteria %s is not supported.","Field api name '%s' is not supported with comparator '%s' for criteria %s.","Field api name '%s' is not available for criteria %s. Check visibility and permission for the field","Field api name '%s' doesn't support this comparator '%s' for criteria %s.","Value '%s' is not supported for criteria %s.","Field '%s' is not supported with value '%s' for criteria %s.","Comparator '%s' is not supported with value '%s' for criteria %s.","Comparator '%s' is not supported with value '%s' for criteria %s as the value is encrypted.","Criteria %s doesn't support this logical group operator '%s'. Supported operators are 'and'"," 'or'.","Requested field api name '%s' is not available for the module '%s'. Check permission or visibility for the field.","Invalid field for the module provided in fields. Field api name '%s' is not supported for this module '%s'.","Value exceeded limit %d","Invalid page number for query. Page %s is not supported for the query.","Invalid page number for query. Page %s is not supported for the query. Page range is from %d to %d.","Many requests fired in concurrent than the allowed limit","Callback failed after %d attempts.","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.taxes.ActionResponse":{"classes":["com.zoho.crm.api.taxes.SuccessResponse","com.zoho.crm.api.taxes.APIException"],"interface":true},"com.zoho.crm.api.record.CarryOverTags":{"deals":{"name":"Deals","type":"List"},"accounts":{"name":"Accounts","type":"List"},"contacts":{"name":"Contacts","type":"List"}},"com.zoho.crm.api.bulk_read.ActionHandler":{"classes":["com.zoho.crm.api.bulk_read.APIException","com.zoho.crm.api.bulk_read.ActionWrapper"],"interface":true},"com.zoho.crm.api.tags.Tag":{"created_time":{"name":"created_time","type":"DateTime"},"modified_time":{"name":"modified_time","type":"DateTime"},"name":{"required_in_update":true,"name":"name","type":"String","required":true},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"}},"com.zoho.crm.api.fields.GetFieldsParam":{"module_1":{"name":"module","type":"String"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.notes.DeleteNotesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.files.BodyWrapper":{"file":{"name":"file","max-length":10,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.tags.AddTagsToMultipleRecordsParam":{"ids":{"name":"ids","type":"Long","required":true},"over_write":{"name":"over_write","type":"String"},"tag_names":{"name":"tag_names","type":"String","required":true}},"com.zoho.crm.api.tags.APIException":{"code":{"values":["REQUIRED_PARAM_MISSING","MANDATORY_NOT_FOUND","INVALID_MODULE","DUPLICATE_DATA","TAG_ID_NOT_FOUND","FAILURE","INTERNAL_ERROR","NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","LICENSE_LIMIT_EXCEEDED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"param","type":"String"},{"name":"permissions","type":"List"},{"name":"maximum_length","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["tags not found","special characters found in the given name","One of the expected parameter is missing","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid","duplicate data","tag edition limit exceeded","invalid data","tags not updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.currencies.Format":{"decimal_separator":{"values":["Period","Comma"],"name":"decimal_separator","type":"com.zoho.crm.api.util.Choice","required":true},"thousand_separator":{"values":["Period","Comma","Space"],"name":"thousand_separator","type":"com.zoho.crm.api.util.Choice","required":true},"decimal_places":{"required_in_update":true,"values":["0","2","3"],"name":"decimal_places","type":"com.zoho.crm.api.util.Choice","required":true}},"com.zoho.crm.api.currencies.ResponseWrapper":{"currencies":{"structure_name":"com.zoho.crm.api.currencies.Currency","name":"currencies","type":"List"}},"com.zoho.crm.api.share_records.GetSharedRecordDetailsParam":{"view":{"name":"view","type":"String"},"sharedTo":{"name":"sharedTo","type":"Long"}},"com.zoho.crm.api.users.TabTheme":{"font_color":{"name":"font_color","type":"String"},"background":{"name":"background","type":"String"}},"com.zoho.crm.api.profiles.Profile":{"created_time":{"name":"created_time","type":"DateTime"},"description":{"name":"description","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"delete":{"name":"_delete","type":"Boolean"},"sections":{"structure_name":"com.zoho.crm.api.profiles.Section","name":"sections","type":"List"},"display_label":{"name":"display_label","type":"String"},"default":{"name":"default","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"permissions_details":{"structure_name":"com.zoho.crm.api.profiles.PermissionDetail","name":"permissions_details","type":"List"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"category":{"name":"category","type":"Boolean"}},"com.zoho.crm.api.fields.Module":{"layout":{"structure_name":"com.zoho.crm.api.layouts.Layout","name":"layout","type":"com.zoho.crm.api.layouts.Layout"},"display_label":{"name":"display_label","type":"String"},"module_1":{"name":"module","type":"String"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"},"module_name":{"name":"module_name","type":"String"}},"com.zoho.crm.api.notification.DisableNotificationsParam":{"channel_ids":{"name":"channel_ids","type":"Long"}},"com.zoho.crm.api.bulk_write.ResponseHandler":{"classes":["com.zoho.crm.api.bulk_write.APIException","com.zoho.crm.api.bulk_write.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.territories.Territory":{"created_time":{"name":"created_time","type":"DateTime"},"modified_time":{"name":"modified_time","type":"DateTime"},"manager":{"structure_name":"com.zoho.crm.api.users.User","name":"manager","type":"com.zoho.crm.api.users.User"},"parent_id":{"name":"parent_id","type":"String"},"criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"}},"com.zoho.crm.api.layouts.Properties":{"reorder_rows":{"name":"reorder_rows","type":"Boolean"},"tooltip":{"structure_name":"com.zoho.crm.api.fields.ToolTip","name":"tooltip","type":"com.zoho.crm.api.fields.ToolTip"},"maximum_rows":{"name":"maximum_rows","type":"Integer"}},"com.zoho.crm.api.currencies.Currency":{"symbol":{"name":"symbol","type":"String","required":true},"created_time":{"name":"created_time","type":"DateTime"},"is_active":{"name":"is_active","type":"Boolean"},"exchange_rate":{"name":"exchange_rate","type":"String","required":true},"format":{"structure_name":"com.zoho.crm.api.currencies.Format","name":"format","type":"com.zoho.crm.api.currencies.Format","required":true},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"prefix_symbol":{"name":"prefix_symbol","type":"Boolean"},"is_base":{"name":"is_base","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"name":{"name":"name","type":"String","required":true},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"iso_code":{"name":"iso_code","type":"String","required":true}},"com.zoho.crm.api.variables.ResponseWrapper":{"variables":{"structure_name":"com.zoho.crm.api.variables.Variable","name":"variables","type":"List"}},"com.zoho.crm.api.record.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.record.FileHandler":{"classes":["com.zoho.crm.api.record.SuccessResponse","com.zoho.crm.api.record.APIException"],"interface":true},"com.zoho.crm.api.share_records.DeleteActionWrapper":{"share":{"structure_name":"com.zoho.crm.api.share_records.DeleteActionResponse","name":"share","type":"com.zoho.crm.api.share_records.DeleteActionResponse"}},"com.zoho.crm.api.roles.ResponseHandler":{"classes":["com.zoho.crm.api.roles.APIException","com.zoho.crm.api.roles.ResponseWrapper"],"interface":true},"com.zoho.crm.api.profiles.ResponseWrapper":{"profiles":{"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"}},"com.zoho.crm.api.notification.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.taxes.ResponseWrapper":{"preference":{"structure_name":"com.zoho.crm.api.taxes.Preference","name":"preference","type":"com.zoho.crm.api.taxes.Preference"},"taxes":{"structure_name":"com.zoho.crm.api.taxes.Tax","name":"taxes","type":"List"}},"com.zoho.crm.api.related_records.BodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.taxes.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"name","type":"String"},{"name":"value","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["tax added","record updated","tax deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.tags.GetTagsParam":{"module_1":{"name":"module","type":"String","required":true},"my_tags":{"values":["true","false"],"name":"my_tags","type":"String"}},"com.zoho.crm.api.tags.ConflictWrapper":{"conflict_id":{"name":"conflict_id","type":"String","required":true}},"com.zoho.crm.api.users.GetUserHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.record.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.currencies.BodyWrapper":{"currencies":{"structure_name":"com.zoho.crm.api.currencies.Currency","name":"currencies","max-length":10,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.fields.Formula":{"return_type":{"name":"return_type","type":"String"},"expression":{"name":"expression","type":"String"}},"com.zoho.crm.api.bulk_write.APIException":{"error_message":{"values":["Bad Request"],"name":"ERROR_MESSAGE","type":"com.zoho.crm.api.util.Choice"},"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","FILE_TOO_LARGE","INVALID_FILE_FORMAT","MANDATORY_FIELDS_NOT_MAPPED","MANDATORY_NOT_FOUND","INVALID_FIELD","INVALID_FORMAT","INVALID_FILE_ID","HEADER_LIMIT_EXCEEDED","COLUMN_INDEX_NOT_FOUND","MODULE_NOT_AVAILABLE","INVALID_DATA","DUPLICATE_DATA","NOT_APPROVED","BLOCKED_RECORD","CANNOT_PROCESS","LIMIT_EXCEEDED","RESOURCE_NOT_FOUND","MISSING_REQUIRED_KEY","INVALID_FIELD_NAME","FILE_NOT_SUPPORTED","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"x_info":{"values":["Link not valid"],"name":"x-info","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"error_code":{"name":"ERROR_CODE","type":"Integer"},"http_status":{"name":"http_status","type":"String"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","invalid file format. only zip format is supported","File size too large to process","The requested resource doesn't exist.","required key operation is not found in request body.","improper file id","required key index for field Company is not found in request body.","All mandatory fields are not mapped for the layout","Requested module 'asdf' is not available.","invalid mapping. invalid api_name ast_Name.","File not supported for bulk write","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"x_error":{"values":["check if headers [feature:X-CRM-ORG] are present and valid"],"name":"x-error","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"},"info":{"values":["Forbidden"],"name":"info","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.custom_views.Info":{"per_page":{"name":"per_page","type":"Integer"},"default":{"name":"default","type":"String"},"count":{"name":"count","type":"Integer"},"translation":{"structure_name":"com.zoho.crm.api.custom_views.Translation","name":"translation","type":"com.zoho.crm.api.custom_views.Translation"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.bulk_read.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.bulk_read.JobDetail","name":"data","type":"List"}},"com.zoho.crm.api.notes.BodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.notes.Note","name":"data","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.variables.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["variable added","variable updated","variable deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.attachments.ResponseHandler":{"classes":["com.zoho.crm.api.attachments.APIException","com.zoho.crm.api.attachments.ResponseWrapper","com.zoho.crm.api.attachments.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.util.Model":{"classes":["com.zoho.crm.api.attachments.SuccessResponse","com.zoho.crm.api.attachments.APIException","com.zoho.crm.api.attachments.Attachment","com.zoho.crm.api.attachments.ActionWrapper","com.zoho.crm.api.attachments.ResponseWrapper","com.zoho.crm.api.attachments.FileBodyWrapper","com.zoho.crm.api.notes.ActionWrapper","com.zoho.crm.api.notes.SuccessResponse","com.zoho.crm.api.notes.BodyWrapper","com.zoho.crm.api.notes.APIException","com.zoho.crm.api.notes.Info","com.zoho.crm.api.notes.ResponseWrapper","com.zoho.crm.api.notes.Note","com.zoho.crm.api.roles.Role","com.zoho.crm.api.roles.APIException","com.zoho.crm.api.roles.ResponseWrapper","com.zoho.crm.api.related_lists.ResponseWrapper","com.zoho.crm.api.related_lists.RelatedList","com.zoho.crm.api.related_lists.APIException","com.zoho.crm.api.taxes.Preference","com.zoho.crm.api.taxes.ActionWrapper","com.zoho.crm.api.taxes.SuccessResponse","com.zoho.crm.api.taxes.APIException","com.zoho.crm.api.taxes.ResponseWrapper","com.zoho.crm.api.taxes.BodyWrapper","com.zoho.crm.api.taxes.Tax","com.zoho.crm.api.layouts.ResponseWrapper","com.zoho.crm.api.layouts.Section","com.zoho.crm.api.layouts.APIException","com.zoho.crm.api.layouts.Layout","com.zoho.crm.api.layouts.Properties","com.zoho.crm.api.bulk_write.CallBack","com.zoho.crm.api.bulk_write.SuccessResponse","com.zoho.crm.api.bulk_write.RequestWrapper","com.zoho.crm.api.bulk_write.APIException","com.zoho.crm.api.bulk_write.BulkWriteResponse","com.zoho.crm.api.bulk_write.File","com.zoho.crm.api.bulk_write.Resource","com.zoho.crm.api.bulk_write.FieldMapping","com.zoho.crm.api.bulk_write.FileBodyWrapper","com.zoho.crm.api.bulk_write.Result","com.zoho.crm.api.custom_views.SharedDetails","com.zoho.crm.api.custom_views.Translation","com.zoho.crm.api.custom_views.ResponseWrapper","com.zoho.crm.api.custom_views.Info","com.zoho.crm.api.custom_views.CustomView","com.zoho.crm.api.custom_views.Criteria","com.zoho.crm.api.custom_views.Range","com.zoho.crm.api.custom_views.APIException","com.zoho.crm.api.notification.SuccessResponse","com.zoho.crm.api.notification.Info","com.zoho.crm.api.notification.BodyWrapper","com.zoho.crm.api.notification.APIException","com.zoho.crm.api.notification.ActionWrapper","com.zoho.crm.api.notification.ResponseWrapper","com.zoho.crm.api.notification.Notification","com.zoho.crm.api.blue_print.Transition","com.zoho.crm.api.blue_print.BluePrint","com.zoho.crm.api.blue_print.SuccessResponse","com.zoho.crm.api.blue_print.BodyWrapper","com.zoho.crm.api.blue_print.NextTransition","com.zoho.crm.api.blue_print.ProcessInfo","com.zoho.crm.api.blue_print.ResponseWrapper","com.zoho.crm.api.blue_print.APIException","com.zoho.crm.api.blue_print.ValidationError","com.zoho.crm.api.files.BodyWrapper","com.zoho.crm.api.files.SuccessResponse","com.zoho.crm.api.files.ActionWrapper","com.zoho.crm.api.files.APIException","com.zoho.crm.api.files.FileBodyWrapper","com.zoho.crm.api.record.ResponseWrapper","com.zoho.crm.api.record.Consent","com.zoho.crm.api.record.SuccessResponse","com.zoho.crm.api.record.ConvertActionWrapper","com.zoho.crm.api.record.MassUpdateBodyWrapper","com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.Territory","com.zoho.crm.api.record.SuccessfulConvert","com.zoho.crm.api.record.LeadConverter","com.zoho.crm.api.record.BodyWrapper","com.zoho.crm.api.record.Criteria","com.zoho.crm.api.record.MassUpdateActionWrapper","com.zoho.crm.api.record.Info","com.zoho.crm.api.record.FileBodyWrapper","com.zoho.crm.api.record.InventoryLineItems","com.zoho.crm.api.record.MassUpdate","com.zoho.crm.api.record.ActionWrapper","com.zoho.crm.api.record.Record","com.zoho.crm.api.record.RemindAt","com.zoho.crm.api.record.Participants","com.zoho.crm.api.record.ConvertBodyWrapper","com.zoho.crm.api.record.MassUpdateResponseWrapper","com.zoho.crm.api.record.FileDetails","com.zoho.crm.api.record.Reminder","com.zoho.crm.api.record.DeletedRecordsWrapper","com.zoho.crm.api.record.DeletedRecord","com.zoho.crm.api.record.LineTax","com.zoho.crm.api.record.RecurringActivity","com.zoho.crm.api.record.LineItemProduct","com.zoho.crm.api.record.Comment","com.zoho.crm.api.record.CarryOverTags","com.zoho.crm.api.record.MassUpdateSuccessResponse","com.zoho.crm.api.record.PricingDetails","com.zoho.crm.api.related_records.APIException","com.zoho.crm.api.related_records.SuccessResponse","com.zoho.crm.api.related_records.ActionWrapper","com.zoho.crm.api.related_records.ResponseWrapper","com.zoho.crm.api.related_records.FileBodyWrapper","com.zoho.crm.api.related_records.BodyWrapper","com.zoho.crm.api.share_records.SuccessResponse","com.zoho.crm.api.share_records.SharedThrough","com.zoho.crm.api.share_records.APIException","com.zoho.crm.api.share_records.ResponseWrapper","com.zoho.crm.api.share_records.ShareRecord","com.zoho.crm.api.share_records.DeleteActionWrapper","com.zoho.crm.api.share_records.BodyWrapper","com.zoho.crm.api.share_records.ActionWrapper","com.zoho.crm.api.bulk_read.Criteria","com.zoho.crm.api.bulk_read.Query","com.zoho.crm.api.bulk_read.RequestWrapper","com.zoho.crm.api.bulk_read.SuccessResponse","com.zoho.crm.api.bulk_read.JobDetail","com.zoho.crm.api.bulk_read.Result","com.zoho.crm.api.bulk_read.CallBack","com.zoho.crm.api.bulk_read.ResponseWrapper","com.zoho.crm.api.bulk_read.APIException","com.zoho.crm.api.bulk_read.ActionWrapper","com.zoho.crm.api.bulk_read.FileBodyWrapper","com.zoho.crm.api.variables.ResponseWrapper","com.zoho.crm.api.variables.BodyWrapper","com.zoho.crm.api.variables.APIException","com.zoho.crm.api.variables.Variable","com.zoho.crm.api.variables.SuccessResponse","com.zoho.crm.api.variables.ActionWrapper","com.zoho.crm.api.org.SuccessResponse","com.zoho.crm.api.org.ResponseWrapper","com.zoho.crm.api.org.Org","com.zoho.crm.api.org.LicenseDetails","com.zoho.crm.api.org.APIException","com.zoho.crm.api.org.FileBodyWrapper","com.zoho.crm.api.query.ResponseWrapper","com.zoho.crm.api.query.BodyWrapper","com.zoho.crm.api.query.APIException","com.zoho.crm.api.profiles.APIException","com.zoho.crm.api.profiles.Category","com.zoho.crm.api.profiles.Profile","com.zoho.crm.api.profiles.PermissionDetail","com.zoho.crm.api.profiles.Section","com.zoho.crm.api.profiles.ResponseWrapper","com.zoho.crm.api.users.ActionWrapper","com.zoho.crm.api.users.SuccessResponse","com.zoho.crm.api.users.ResponseWrapper","com.zoho.crm.api.users.Territory","com.zoho.crm.api.users.CustomizeInfo","com.zoho.crm.api.users.Theme","com.zoho.crm.api.users.BodyWrapper","com.zoho.crm.api.users.Info","com.zoho.crm.api.users.Shift","com.zoho.crm.api.users.RequestWrapper","com.zoho.crm.api.users.User","com.zoho.crm.api.users.APIException","com.zoho.crm.api.users.TabTheme","com.zoho.crm.api.modules.Module","com.zoho.crm.api.modules.Territory","com.zoho.crm.api.modules.APIException","com.zoho.crm.api.modules.SuccessResponse","com.zoho.crm.api.modules.ActionWrapper","com.zoho.crm.api.modules.ResponseWrapper","com.zoho.crm.api.modules.Argument","com.zoho.crm.api.modules.RelatedListProperties","com.zoho.crm.api.modules.BodyWrapper","com.zoho.crm.api.tags.MergeWrapper","com.zoho.crm.api.tags.ActionWrapper","com.zoho.crm.api.tags.BodyWrapper","com.zoho.crm.api.tags.Tag","com.zoho.crm.api.tags.ResponseWrapper","com.zoho.crm.api.tags.Info","com.zoho.crm.api.tags.SuccessResponse","com.zoho.crm.api.tags.APIException","com.zoho.crm.api.tags.RecordActionWrapper","com.zoho.crm.api.tags.CountWrapper","com.zoho.crm.api.tags.ConflictWrapper","com.zoho.crm.api.territories.Territory","com.zoho.crm.api.territories.APIException","com.zoho.crm.api.territories.ResponseWrapper","com.zoho.crm.api.contact_roles.ResponseWrapper","com.zoho.crm.api.contact_roles.SuccessResponse","com.zoho.crm.api.contact_roles.BodyWrapper","com.zoho.crm.api.contact_roles.APIException","com.zoho.crm.api.contact_roles.ActionWrapper","com.zoho.crm.api.contact_roles.ContactRole","com.zoho.crm.api.fields.RelatedDetails","com.zoho.crm.api.fields.Field","com.zoho.crm.api.fields.Unique","com.zoho.crm.api.fields.Crypt","com.zoho.crm.api.fields.ViewType","com.zoho.crm.api.fields.AutoNumber","com.zoho.crm.api.fields.MultiSelectLookup","com.zoho.crm.api.fields.PickListValue","com.zoho.crm.api.fields.ResponseWrapper","com.zoho.crm.api.fields.ToolTip","com.zoho.crm.api.fields.Currency","com.zoho.crm.api.fields.Formula","com.zoho.crm.api.fields.Private","com.zoho.crm.api.fields.LookupField","com.zoho.crm.api.fields.APIException","com.zoho.crm.api.fields.Module","com.zoho.crm.api.fields.AssociationDetails","com.zoho.crm.api.variable_groups.ResponseWrapper","com.zoho.crm.api.variable_groups.VariableGroup","com.zoho.crm.api.variable_groups.APIException","com.zoho.crm.api.currencies.Currency","com.zoho.crm.api.currencies.ResponseWrapper","com.zoho.crm.api.currencies.SuccessResponse","com.zoho.crm.api.currencies.BaseCurrencyWrapper","com.zoho.crm.api.currencies.ActionWrapper","com.zoho.crm.api.currencies.APIException","com.zoho.crm.api.currencies.BodyWrapper","com.zoho.crm.api.currencies.Format","com.zoho.crm.api.currencies.BaseCurrencyActionWrapper"],"interface":true},"com.zoho.crm.api.notes.GetNoteParam":{"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.taxes.ActionHandler":{"classes":["com.zoho.crm.api.taxes.ActionWrapper","com.zoho.crm.api.taxes.APIException"],"interface":true},"com.zoho.crm.api.blue_print.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","RECORD_NOT_IN_PROCESS","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"message","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"info_message","type":"String"},{"name":"parent_api_name","type":"String"},{"structure_name":"com.zoho.crm.api.blue_print.ValidationError","name":"validation_error","type":"List"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","invalid transition","invalid data","record not in process","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.files.UploadFilesParam":{"type":{"name":"type","type":"String","required":true}},"com.zoho.crm.api.record.GetRecordHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.taxes.Tax":{"display_label":{"name":"display_label","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"name":{"name":"name","type":"String","required":true},"id":{"name":"id","type":"Long","primary":true},"value":{"name":"value","type":"Double","required":true}},"com.zoho.crm.api.attachments.APIException":{"code":{"values":["NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"id","type":"Long"},{"name":"resource_path_index","type":"Integer"},{"name":"related_status","type":"String"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["As it is a linked attachment"," you can not download it","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Attachment link already exists","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notes.Note":{"owner":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Owner","type":"com.zoho.crm.api.users.User"},"note_content":{"name":"Note_Content","type":"String","required":true},"created_time":{"name":"Created_Time","type":"DateTime"},"attachments":{"lookup":true,"structure_name":"com.zoho.crm.api.attachments.Attachment","name":"$attachments","type":"List"},"note_title":{"name":"Note_Title","type":"String"},"editable":{"name":"$editable","type":"Boolean"},"se_module":{"name":"$se_module","type":"String","required":true},"voice_note":{"name":"$voice_note","type":"Boolean"},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"size":{"name":"$size","type":"String"},"parent_id":{"lookup":true,"structure_name":"com.zoho.crm.api.record.Record","name":"Parent_Id","type":"com.zoho.crm.api.record.Record","required":true},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},"state":{"name":"$state","type":"String"},"id":{"name":"id","type":"Long","primary":true},"is_shared_to_client":{"name":"$is_shared_to_client","type":"Boolean"}},"com.zoho.crm.api.related_lists.APIException":{"code":{"values":["INVALID_MODULE","REQUIRED_PARAM_MISSING","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["the module name given seems to be invalid","the given module is not supported in api","One of the expected parameter is missing","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.related_lists.RelatedList":{"sequence_number":{"name":"sequence_number","type":"String"},"display_label":{"name":"display_label","type":"String"},"module_1":{"name":"module","type":"String"},"api_name":{"name":"api_name","type":"String"},"name":{"name":"name","type":"String"},"action":{"name":"action","type":"String"},"id":{"name":"id","type":"Long","primary":true},"href":{"name":"href","type":"String"},"type":{"name":"type","type":"String"},"connectedmodule":{"name":"connectedmodule","type":"String"},"linkingmodule":{"name":"linkingmodule","type":"String"}},"com.zoho.crm.api.record.SuccessfulConvert":{"deals":{"name":"Deals","type":"String"},"accounts":{"name":"Accounts","type":"String"},"contacts":{"name":"Contacts","type":"String"}},"com.zoho.crm.api.modules.ActionHandler":{"classes":["com.zoho.crm.api.modules.APIException","com.zoho.crm.api.modules.ActionWrapper"],"interface":true},"com.zoho.crm.api.profiles.GetProfilesHeader":{"if_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.fields.AssociationDetails":{"related_field":{"structure_name":"com.zoho.crm.api.fields.LookupField","name":"related_field","type":"com.zoho.crm.api.fields.LookupField"},"lookup_field":{"structure_name":"com.zoho.crm.api.fields.LookupField","name":"lookup_field","type":"com.zoho.crm.api.fields.LookupField"}},"com.zoho.crm.api.custom_views.Translation":{"public_views":{"name":"public_views","type":"String"},"other_users_views":{"name":"other_users_views","type":"String"},"shared_with_me":{"name":"shared_with_me","type":"String"},"created_by_me":{"name":"created_by_me","type":"String"}},"com.zoho.crm.api.users.RequestWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.User","name":"users","max-length":1,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.tags.ResponseWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"tags","type":"List"},"info":{"structure_name":"com.zoho.crm.api.tags.Info","name":"info","type":"com.zoho.crm.api.tags.Info"}},"com.zoho.crm.api.custom_views.CustomView":{"display_value":{"name":"display_value","type":"String"},"shared_type":{"name":"shared_type","type":"String"},"criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"system_name":{"name":"system_name","type":"String"},"shared_details":{"structure_name":"com.zoho.crm.api.custom_views.SharedDetails","name":"shared_details","type":"List"},"sort_by":{"name":"sort_by","type":"String"},"offline":{"name":"offline","type":"Boolean"},"default":{"name":"default","type":"Boolean"},"name":{"name":"name","type":"String"},"system_defined":{"name":"system_defined","type":"Boolean"},"id":{"name":"id","type":"Long","primary":true},"category":{"name":"category","type":"String"},"fields":{"name":"fields","type":"List"},"sort_order":{"name":"sort_order","type":"String"},"favorite":{"name":"favorite","type":"Integer"}},"com.zoho.crm.api.tags.CountHandler":{"classes":["com.zoho.crm.api.tags.APIException","com.zoho.crm.api.tags.CountWrapper"],"interface":true},"com.zoho.crm.api.record.LineTax":{"percentage":{"name":"percentage","type":"Double"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"value":{"name":"value","type":"Double"}},"com.zoho.crm.api.variables.ActionResponse":{"classes":["com.zoho.crm.api.variables.APIException","com.zoho.crm.api.variables.SuccessResponse"],"interface":true},"com.zoho.crm.api.variables.Variable":{"api_name":{"required_in_update":false,"name":"api_name","type":"String","primary":true},"name":{"name":"name","type":"String","required":true},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true},"type":{"name":"type","type":"String","required":true},"variable_group":{"structure_name":"com.zoho.crm.api.variable_groups.VariableGroup","name":"variable_group","type":"com.zoho.crm.api.variable_groups.VariableGroup","skip_mandatory":true,"required":true},"value":{"name":"value","type":"Object"}},"com.zoho.crm.api.record.DeleteRecordParam":{"wf_trigger":{"name":"wf_trigger","type":"String"}},"com.zoho.crm.api.territories.ResponseWrapper":{"territories":{"structure_name":"com.zoho.crm.api.territories.Territory","name":"territories","type":"List"}},"com.zoho.crm.api.fields.Crypt":{"mode":{"name":"mode","type":"String"},"column":{"name":"column","type":"String"},"encfldids":{"name":"encFldIds","type":"List"},"notify":{"name":"notify","type":"String"},"table":{"name":"table","type":"String"},"status":{"name":"status","type":"Integer"}},"com.zoho.crm.api.currencies.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["The multi-currency feature is enabled and given currency is created as the base currency.","The currency created successfully.","The currency updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.variable_groups.APIException":{"code":{"values":["INTERNAL_ERROR","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.modules.RelatedListProperties":{"sort_by":{"name":"sort_by","type":"String"},"fields":{"name":"fields","type":"List"},"sort_order":{"name":"sort_order","type":"String"}},"com.zoho.crm.api.fields.ResponseWrapper":{"fields":{"structure_name":"com.zoho.crm.api.fields.Field","name":"fields","type":"List"}},"com.zoho.crm.api.contact_roles.DeleteContactRolesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.currencies.BaseCurrencyActionWrapper":{"base_currency":{"structure_name":"com.zoho.crm.api.currencies.ActionResponse","name":"base_currency","type":"com.zoho.crm.api.currencies.ActionResponse"}},"com.zoho.crm.api.modules.ActionResponse":{"classes":["com.zoho.crm.api.modules.APIException","com.zoho.crm.api.modules.SuccessResponse"],"interface":true},"com.zoho.crm.api.files.ActionHandler":{"classes":["com.zoho.crm.api.files.ActionWrapper","com.zoho.crm.api.files.APIException"],"interface":true},"com.zoho.crm.api.related_records.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.record.ResponseHandler":{"classes":["com.zoho.crm.api.record.ResponseWrapper","com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.currencies.APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","ALREADY_ENABLED","FEATURE_NOT_ENABLED","NOT_ALLOWED","ACTIVE_STATE_LIMIT_EXCEEDED","INTERNAL_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","CURRENCIES_NOT_ENABLED","FEATURE_NOT_SUPPORTED","No Content"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one.","The http request method type is not a valid one","The module name given seems to be invalid","The multi-currency is already enabled","Currency name is invalid.","ISO code is invalid.","Currency symbol is invalid.","The multi-currency feature is not available except the Enterprise and higher editions.","Required field not found.","unable to process your request. please verify whether you have entered proper method name"," parameter and parameter values.","Currency symbol is invalid.","Multi currency is not enabled","No Content","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.MassUpdate":{"updated_count":{"name":"Updated_Count","type":"Integer"},"total_count":{"name":"Total_Count","type":"Integer"},"not_updated_count":{"name":"Not_Updated_Count","type":"Integer"},"failed_count":{"name":"Failed_Count","type":"Integer"},"status":{"values":["COMPLETED","SCHEDULED","RUNNING","FAILED"],"name":"Status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.bulk_read.SuccessResponse":{"code":{"values":["ADDED_SUCCESSFULLY"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"operation","type":"String"},{"values":["COMPLETED","IN PROGRESS","ADDED","FAILURE"],"name":"state","type":"com.zoho.crm.api.util.Choice"},{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},{"name":"created_time","type":"DateTime"}],"name":"details","type":"Map"},"message":{"values":["Added successfully."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.related_records.GetRelatedRecordsHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.fields.PickListValue":{"display_value":{"name":"display_value","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"expected_data_type":{"name":"expected_data_type","type":"String"},"maps":{"name":"maps","type":"List"},"sys_ref_name":{"name":"sys_ref_name","type":"String"},"actual_value":{"name":"actual_value","type":"String"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.currencies.ActionWrapper":{"currencies":{"structure_name":"com.zoho.crm.api.currencies.ActionResponse","name":"currencies","type":"List"}},"com.zoho.crm.api.query.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.profiles.PermissionDetail":{"display_label":{"name":"display_label","type":"String"},"module_1":{"name":"module","type":"String"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"enabled":{"name":"enabled","type":"Boolean"}},"com.zoho.crm.api.record.MassUpdateResponseHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.MassUpdateResponseWrapper"],"interface":true},"com.zoho.crm.api.users.Territory":{"manager":{"name":"manager","type":"Boolean"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.variables.APIException":{"code":{"values":["UNABLE_TO_PARSE_DATA_TYPE","REQUIRED_PARAM_MISSING","DUPLICATE_DATA","INVALID_DATA","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INTERNAL_ERROR","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param","type":"String"},{"name":"api_name","type":"String"},{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["either the request body or parameters is in wrong format","One of the expected parameter is missing","duplicate data","variable not deleted","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.variables.ActionWrapper":{"variables":{"structure_name":"com.zoho.crm.api.variables.ActionResponse","name":"variables","type":"List","required":true}},"com.zoho.crm.api.record.ConvertActionHandler":{"classes":["com.zoho.crm.api.record.ConvertActionWrapper","com.zoho.crm.api.record.APIException"],"interface":true},"com.zoho.crm.api.notes.GetNotesParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.fields.Field":{"system_mandatory":{"name":"system_mandatory","type":"Boolean"},"private":{"structure_name":"com.zoho.crm.api.fields.Private","name":"private","type":"com.zoho.crm.api.fields.Private"},"webhook":{"name":"webhook","type":"Boolean"},"criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"json_type":{"name":"json_type","type":"String"},"crypt":{"structure_name":"com.zoho.crm.api.fields.Crypt","name":"crypt","type":"com.zoho.crm.api.fields.Crypt"},"field_label":{"name":"field_label","type":"String"},"tooltip":{"structure_name":"com.zoho.crm.api.fields.ToolTip","name":"tooltip","type":"com.zoho.crm.api.fields.ToolTip"},"created_source":{"name":"created_source","type":"String"},"type":{"name":"_type","type":"String"},"layouts":{"structure_name":"com.zoho.crm.api.layouts.Layout","name":"layouts","type":"com.zoho.crm.api.layouts.Layout"},"mandatory":{"name":"mandatory","type":"Boolean"},"content":{"name":"content","type":"String"},"field_read_only":{"name":"field_read_only","type":"Boolean"},"display_label":{"name":"display_label","type":"String"},"validation_rule":{"name":"validation_rule","type":"Map"},"section_id":{"name":"section_id","type":"Integer"},"read_only":{"name":"read_only","type":"Boolean"},"association_details":{"structure_name":"com.zoho.crm.api.fields.AssociationDetails","name":"association_details","type":"com.zoho.crm.api.fields.AssociationDetails"},"quick_sequence_number":{"name":"quick_sequence_number","type":"Integer"},"businesscard_supported":{"name":"businesscard_supported","type":"Boolean"},"multi_module_lookup":{"name":"multi_module_lookup","type":"Map"},"currency":{"structure_name":"com.zoho.crm.api.fields.Currency","name":"currency","type":"com.zoho.crm.api.fields.Currency"},"id":{"name":"id","type":"Long","read-only":true,"primary":true},"custom_field":{"name":"custom_field","type":"Boolean"},"lookup":{"structure_name":"com.zoho.crm.api.fields.Module","name":"lookup","type":"com.zoho.crm.api.fields.Module"},"convert_mapping":{"name":"convert_mapping","type":"Map"},"visible":{"name":"visible","type":"Boolean"},"related_details":{"structure_name":"com.zoho.crm.api.fields.RelatedDetails","name":"related_details","type":"com.zoho.crm.api.fields.RelatedDetails"},"column_name":{"name":"column_name","type":"String"},"length":{"name":"length","type":"Integer"},"view_type":{"structure_name":"com.zoho.crm.api.fields.ViewType","name":"view_type","type":"com.zoho.crm.api.fields.ViewType"},"personality_name":{"name":"personality_name","type":"String"},"default_value":{"name":"default_value","type":"String"},"transition_sequence":{"name":"transition_sequence","type":"Integer"},"message":{"name":"message","type":"String"},"subform":{"structure_name":"com.zoho.crm.api.fields.Module","name":"subform","type":"com.zoho.crm.api.fields.Module"},"api_name":{"name":"api_name","type":"String"},"unique":{"structure_name":"com.zoho.crm.api.fields.Unique","name":"unique","type":"com.zoho.crm.api.fields.Unique"},"history_tracking":{"name":"history_tracking","type":"Boolean"},"data_type":{"name":"data_type","type":"String","read-only":true},"formula":{"structure_name":"com.zoho.crm.api.fields.Formula","name":"formula","type":"com.zoho.crm.api.fields.Formula"},"decimal_place":{"name":"decimal_place","type":"Integer"},"mass_update":{"name":"mass_update","type":"Boolean"},"blueprint_supported":{"name":"blueprint_supported","type":"Boolean"},"multiselectlookup":{"structure_name":"com.zoho.crm.api.fields.MultiSelectLookup","name":"multiselectlookup","type":"com.zoho.crm.api.fields.MultiSelectLookup"},"pick_list_values":{"structure_name":"com.zoho.crm.api.fields.PickListValue","name":"pick_list_values","type":"List"},"auto_number":{"structure_name":"com.zoho.crm.api.fields.AutoNumber","name":"auto_number","type":"com.zoho.crm.api.fields.AutoNumber"}},"com.zoho.crm.api.record.ConvertBodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.LeadConverter","name":"data","max-length":1,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.tags.CreateTagsParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.tags.RemoveTagsFromRecordParam":{"tag_names":{"name":"tag_names","type":"String","required":true}},"com.zoho.crm.api.contact_roles.ResponseHandler":{"classes":["com.zoho.crm.api.contact_roles.ResponseWrapper","com.zoho.crm.api.contact_roles.APIException"],"interface":true},"com.zoho.crm.api.tags.UpdateTagsParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.record.DeletedRecordsHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.DeletedRecordsWrapper"],"interface":true},"com.zoho.crm.api.users.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"email","type":"String"}],"name":"details","type":"Map"},"message":{"values":["User added","User updated","User deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.tags.GetRecordCountForTagParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.layouts.Section":{"display_label":{"name":"display_label","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"issubformsection":{"name":"isSubformSection","type":"Boolean"},"tab_traversal":{"name":"tab_traversal","type":"Integer"},"api_name":{"name":"api_name","type":"String"},"column_count":{"name":"column_count","type":"Integer"},"name":{"name":"name","type":"String"},"generated_type":{"name":"generated_type","type":"String"},"fields":{"structure_name":"com.zoho.crm.api.fields.Field","name":"fields","type":"List"},"properties":{"structure_name":"com.zoho.crm.api.layouts.Properties","name":"properties","type":"com.zoho.crm.api.layouts.Properties"}},"com.zoho.crm.api.users.GetUsersHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.fields.RelatedDetails":{"display_label":{"name":"display_label","type":"String"},"module_1":{"structure_name":"com.zoho.crm.api.fields.Module","name":"module","type":"com.zoho.crm.api.fields.Module"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"_type","type":"String"}},"com.zoho.crm.api.contact_roles.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"limit","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the module name given seems to be invalid","duplicate data","Contact Role feature limit exceeded","required field not found","invalid data","contact role not deleted","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.fields.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","INTERNAL_ERROR","REQUIRED_PARAM_MISSING"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the given module is not supported for this api","Internal server error occurred.","the module name given seems to be invalid"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notification.GetNotificationDetailsParam":{"per_page":{"name":"per_page","type":"Integer"},"module_1":{"name":"module","type":"String"},"page":{"name":"page","type":"Integer"},"channel_id":{"name":"channel_id","type":"Long"}},"com.zoho.crm.api.bulk_read.Criteria":{"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com.zoho.crm.api.util.Choice"},"api_name":{"name":"api_name","type":"String"},"group_operator":{"values":["and","or"],"name":"group_operator","type":"com.zoho.crm.api.util.Choice"},"value":{"name":"value","type":"Object"},"group":{"structure_name":"com.zoho.crm.api.bulk_read.Criteria","name":"group","type":"List"}},"com.zoho.crm.api.contact_roles.ActionHandler":{"classes":["com.zoho.crm.api.contact_roles.APIException","com.zoho.crm.api.contact_roles.ActionWrapper"],"interface":true},"com.zoho.crm.api.record.FileDetails":{"extn":{"name":"extn","type":"String"},"file_name":{"name":"file_Name","type":"String"},"link_docs":{"name":"link_Docs","type":"Integer"},"delete_url":{"name":"delete_Url","type":"String"},"entity_id":{"name":"entity_Id","type":"String"},"delete":{"name":"_delete","type":"String"},"file_size":{"name":"file_Size","type":"String"},"mode":{"name":"mode","type":"String"},"preview_url":{"name":"preview_Url","type":"String"},"file_id":{"name":"file_Id","type":"String","required":true},"is_preview_available":{"name":"is_Preview_Available","type":"Boolean"},"download_url":{"name":"download_Url","type":"String"},"attachment_id":{"name":"attachment_Id","type":"String"},"creator_id":{"name":"creator_Id","type":"String"},"original_size_byte":{"name":"original_Size_Byte","type":"String"}},"com.zoho.crm.api.fields.ViewType":{"view":{"name":"view","type":"Boolean"},"edit":{"name":"edit","type":"Boolean"},"quick_create":{"name":"quick_create","type":"Boolean"},"create":{"name":"create","type":"Boolean"}},"com.zoho.crm.api.files.APIException":{"code":{"values":["VIRUS_DETECTED","failure_in_attachment_handling","INTERNAL_ERROR","INVALID_TOKEN","INVALID_DATA","MANDATORY_NOT_FOUND","NO_PERMISSION","INVALID_MODULE","NOT_SUPPORTED","PATTERN_NOT_MATCHED","OAUTH_SCOPE_MISMATCH","DUPLICATE_DATA","INVALID_QUERY","MAPPING_MISMATCH","ID_ALREADY_CONVERTED","FILE_SIZE_MORE_THAN_ALLOWED_SIZE","RECORD_IN_BLUEPRINT","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","REQUIRED_PARAM_MISSING"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Unable to process your request. Virus has been detected.","Problem in uploading attachment. kindly upload the file properly","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","invalid data","permission denied","Internal server error occurred.","duplicate data","required field not found","record not deleted","record not deletable","Authentication failed","One of the expected parameter is missing","mandatory param missing","unable to process your request. please verify whether you have entered proper method name"," parameter and parameter values."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.layouts.ResponseHandler":{"classes":["com.zoho.crm.api.layouts.ResponseWrapper","com.zoho.crm.api.layouts.APIException"],"interface":true},"com.zoho.crm.api.notes.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.notes.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.notification.BodyWrapper":{"watch":{"structure_name":"com.zoho.crm.api.notification.Notification","name":"watch","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.blue_print.ActionResponse":{"classes":["com.zoho.crm.api.blue_print.SuccessResponse","com.zoho.crm.api.blue_print.APIException"],"interface":true},"com.zoho.crm.api.taxes.BodyWrapper":{"taxes":{"structure_name":"com.zoho.crm.api.taxes.Tax","name":"taxes","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.notes.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.notes.Note","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.notes.Info","name":"info","type":"com.zoho.crm.api.notes.Info"}},"com.zoho.crm.api.fields.Private":{"restricted":{"name":"restricted","type":"Boolean"},"type":{"name":"type","type":"String"},"export":{"name":"export","type":"Boolean"}},"com.zoho.crm.api.taxes.ActionWrapper":{"taxes":{"structure_name":"com.zoho.crm.api.taxes.ActionResponse","name":"taxes","type":"List"}},"com.zoho.crm.api.related_lists.GetRelatedListParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.blue_print.ProcessInfo":{"field_id":{"name":"field_id","type":"String"},"escalation":{"name":"escalation","type":"String"},"is_continuous":{"name":"is_continuous","type":"Boolean"},"api_name":{"name":"api_name","type":"String"},"continuous":{"name":"continuous","type":"Boolean"},"field_label":{"name":"field_label","type":"String"},"name":{"name":"name","type":"String"},"column_name":{"name":"column_name","type":"String"},"field_value":{"name":"field_value","type":"String"},"id":{"name":"id","type":"Long"},"field_name":{"name":"field_name","type":"String"}},"com.zoho.crm.api.variables.BodyWrapper":{"variables":{"structure_name":"com.zoho.crm.api.variables.Variable","name":"variables","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.notification.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR","NOT_SUBSCRIBED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"maximum_length","type":"Integer"},{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the module name given seems to be invalid","duplicate data","Not subscribed for actions-watch of the given module/channel","required field not found","invalid data","Not subscribed for actions-watch of the given channel","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.related_records.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["relation added","relation removed"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.Shift":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.contact_roles.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["contact role added","contact role updated","contact role deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.modules.ActionWrapper":{"modules":{"structure_name":"com.zoho.crm.api.modules.ActionResponse","name":"modules","type":"List"}},"com.zoho.crm.api.attachments.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.record.Record":{"created_time":{"name":"Created_Time","type":"DateTime"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"tag":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"Tag","type":"List","skip_mandatory":true},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"}},"com.zoho.crm.api.record.PricingDetails":{"to_range":{"name":"to_range","type":"Double","required":true},"discount":{"name":"discount","type":"Double","required":true},"from_range":{"name":"from_range","type":"Double","required":true}},"com.zoho.crm.api.variable_groups.ResponseHandler":{"classes":["com.zoho.crm.api.variable_groups.ResponseWrapper","com.zoho.crm.api.variable_groups.APIException"],"interface":true},"com.zoho.crm.api.bulk_write.ResponseWrapper":{"classes":["com.zoho.crm.api.bulk_write.APIException","com.zoho.crm.api.bulk_write.BulkWriteResponse"],"interface":true},"com.zoho.crm.api.users.APIException":{"code":{"values":["ID_ALREADY_DELETED","CANNOT_UPDATE_DELETED_USER","AUTHORIZATION_FAILED","PATTERN_NOT_MATCHED","INVALID_REQUEST","LICENSE_LIMIT_EXCEEDED","DUPLICATE_DATA","INVALID_DATA","UNAPPROVABLE","MANDATORY_NOT_FOUND","INTERNAL_ERROR","EMAIL_UPDATE_NOT_ALLOWED","ID_ALREADY_DEACTIVATED","ID_ALREADY_ACTIVE","FEATURE_PERMISSION","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred.","Cannot add user under CRM Plus account. Kindly use CRMPlus URL to add user","Request exceeds your license limit. Need to upgrade in order to add","Failed to add user since same email id is already present","Email Id should not contain @skydesk.jp. Please choose a different email id","Invalid Email Id. Please choose a different email id","Cannot add user for CRMPlus account from CRM. Kindly add user through CRMPlus","Company Name is required","Error occurred in resending the invitation of CRMPLUS user in CRM account","Cannot update the time_zone of another User","Either trial has expired or user does not have sufficient privilege to perform this action","Error occurred while updating CRMPlus User in CRM Account","invalid_data","Deleted user cannot be updated","Re-invite is not allowed for a confirmed user","Cannot update email of a confirmed CRM User","User with same email id is already in CRM Plus","User is already deactivated","Primary Contact cannot be deactivated","User is already active","Share among Subordinates Feature is not available","Profile and Role cannot be Updated by the user.","the_id_given_seems_to_be_invalid","Primary contact cannot be deleted","User is already deleted","User does not have sufficient privilege to delete users"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.attachments.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.attachments.Attachment","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.custom_views.ResponseWrapper":{"custom_views":{"structure_name":"com.zoho.crm.api.custom_views.CustomView","name":"custom_views","type":"List"},"info":{"structure_name":"com.zoho.crm.api.custom_views.Info","name":"info","type":"com.zoho.crm.api.custom_views.Info"}},"com.zoho.crm.api.notification.ActionResponse":{"classes":["com.zoho.crm.api.notification.SuccessResponse","com.zoho.crm.api.notification.APIException"],"interface":true},"com.zoho.crm.api.files.ResponseHandler":{"classes":["com.zoho.crm.api.files.APIException","com.zoho.crm.api.files.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.profiles.GetProfileHeader":{"if_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.bulk_write.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.users.ResponseWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.User","name":"users","type":"List"},"info":{"structure_name":"com.zoho.crm.api.users.Info","name":"info","type":"com.zoho.crm.api.users.Info"}},"com.zoho.crm.api.share_records.ActionResponse":{"classes":["com.zoho.crm.api.share_records.SuccessResponse","com.zoho.crm.api.share_records.APIException"],"interface":true},"com.zoho.crm.api.bulk_read.RequestWrapper":{"file_type":{"values":["ics","csv"],"name":"file_type","type":"com.zoho.crm.api.util.Choice"},"query":{"structure_name":"com.zoho.crm.api.bulk_read.Query","name":"query","type":"com.zoho.crm.api.bulk_read.Query","required":true},"callback":{"structure_name":"com.zoho.crm.api.bulk_read.CallBack","name":"callback","type":"com.zoho.crm.api.bulk_read.CallBack"}},"com.zoho.crm.api.org.ActionResponse":{"classes":["com.zoho.crm.api.org.SuccessResponse","com.zoho.crm.api.org.APIException"],"interface":true},"com.zoho.crm.api.related_records.ActionHandler":{"classes":["com.zoho.crm.api.related_records.APIException","com.zoho.crm.api.related_records.ActionWrapper"],"interface":true},"com.zoho.crm.api.modules.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["module updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.ConvertActionResponse":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.SuccessfulConvert"],"interface":true},"com.zoho.crm.api.roles.Role":{"display_label":{"name":"display_label","type":"String"},"forecast_manager":{"structure_name":"com.zoho.crm.api.users.User","name":"forecast_manager","type":"com.zoho.crm.api.users.User"},"share_with_peers":{"name":"share_with_peers","type":"Boolean"},"name":{"name":"name","type":"String"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true},"reporting_to":{"structure_name":"com.zoho.crm.api.users.User","name":"reporting_to","type":"com.zoho.crm.api.users.User"},"admin_user":{"name":"admin_user","type":"Boolean"}},"com.zoho.crm.api.record.MassUpdateResponse":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.MassUpdate"],"interface":true},"com.zoho.crm.api.tags.RecordActionHandler":{"classes":["com.zoho.crm.api.tags.APIException","com.zoho.crm.api.tags.RecordActionWrapper"],"interface":true},"com.zoho.crm.api.bulk_write.RequestWrapper":{"resource":{"structure_name":"com.zoho.crm.api.bulk_write.Resource","name":"resource","type":"List","required":true},"character_encoding":{"name":"character_encoding","type":"String"},"callback":{"structure_name":"com.zoho.crm.api.bulk_write.CallBack","name":"callback","type":"com.zoho.crm.api.bulk_write.CallBack"},"operation":{"values":["insert","update","upsert"],"name":"operation","type":"com.zoho.crm.api.util.Choice","required":true}},"com.zoho.crm.api.related_records.ActionResponse":{"classes":["com.zoho.crm.api.related_records.APIException","com.zoho.crm.api.related_records.SuccessResponse"],"interface":true},"com.zoho.crm.api.share_records.ActionWrapper":{"share":{"structure_name":"com.zoho.crm.api.share_records.ActionResponse","name":"share","type":"List"}},"com.zoho.crm.api.contact_roles.ActionResponse":{"classes":["com.zoho.crm.api.contact_roles.SuccessResponse","com.zoho.crm.api.contact_roles.APIException"],"interface":true},"com.zoho.crm.api.notification.ResponseWrapper":{"watch":{"structure_name":"com.zoho.crm.api.notification.Notification","name":"watch","type":"List"},"info":{"structure_name":"com.zoho.crm.api.notification.Info","name":"info","type":"com.zoho.crm.api.notification.Info"}},"com.zoho.crm.api.record.MassUpdateBodyWrapper":{"cvid":{"name":"cvid","type":"String"},"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List","skip_mandatory":true,"required":true},"criteria":{"structure_name":"com.zoho.crm.api.record.Criteria","name":"criteria","type":"List"},"ids":{"name":"ids","type":"List"},"over_write":{"name":"over_write","type":"Boolean"},"territory":{"structure_name":"com.zoho.crm.api.record.Territory","name":"territory","type":"com.zoho.crm.api.record.Territory"}},"com.zoho.crm.api.modules.ResponseHandler":{"classes":["com.zoho.crm.api.modules.APIException","com.zoho.crm.api.modules.ResponseWrapper"],"interface":true},"com.zoho.crm.api.variable_groups.VariableGroup":{"display_label":{"name":"display_label","type":"String"},"api_name":{"name":"api_name","type":"String"},"name":{"name":"name","type":"String"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true}},"com.zoho.crm.api.org.Org":{"country":{"name":"country","type":"String"},"photo_id":{"name":"photo_id","type":"String"},"city":{"name":"city","type":"String"},"description":{"name":"description","type":"String"},"mc_status":{"name":"mc_status","type":"Boolean"},"gapps_enabled":{"name":"gapps_enabled","type":"Boolean"},"domain_name":{"name":"domain_name","type":"String"},"translation_enabled":{"name":"translation_enabled","type":"Boolean"},"street":{"name":"street","type":"String"},"currency":{"name":"currency","type":"String"},"id":{"name":"id","type":"Long","primary":true},"state":{"name":"state","type":"String"},"fax":{"name":"fax","type":"String"},"employee_count":{"name":"employee_count","type":"String"},"zip":{"name":"zip","type":"String"},"website":{"name":"website","type":"String"},"currency_symbol":{"name":"currency_symbol","type":"String"},"mobile":{"name":"mobile","type":"String"},"currency_locale":{"name":"currency_locale","type":"String"},"primary_zuid":{"name":"primary_zuid","type":"String"},"zia_portal_id":{"name":"zia_portal_id","type":"String"},"time_zone":{"name":"time_zone","type":"String"},"zgid":{"name":"zgid","type":"String"},"country_code":{"name":"country_code","type":"String"},"license_details":{"structure_name":"com.zoho.crm.api.org.LicenseDetails","name":"license_details","type":"com.zoho.crm.api.org.LicenseDetails"},"phone":{"name":"phone","type":"String"},"company_name":{"name":"company_name","type":"String"},"privacy_settings":{"name":"privacy_settings","type":"Boolean"},"primary_email":{"name":"primary_email","type":"String"},"iso_code":{"name":"iso_code","type":"String"},"alias_1":{"name":"alias","type":"String"}},"com.zoho.crm.api.org.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.contact_roles.BodyWrapper":{"contact_roles":{"structure_name":"com.zoho.crm.api.contact_roles.ContactRole","name":"contact_roles","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.related_lists.GetRelatedListsParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.taxes.DeleteTaxesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.record.RecurringActivity":{"rrule":{"name":"RRULE","type":"String","required":true}},"com.zoho.crm.api.bulk_read.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.files.ActionResponse":{"classes":["com.zoho.crm.api.files.SuccessResponse","com.zoho.crm.api.files.APIException"],"interface":true},"com.zoho.crm.api.modules.Module":{"global_search_supported":{"name":"global_search_supported","type":"Boolean"},"kanban_view":{"name":"kanban_view","type":"Boolean"},"deletable":{"name":"deletable","type":"Boolean"},"description":{"name":"description","type":"String"},"creatable":{"name":"creatable","type":"Boolean"},"filter_status":{"name":"filter_status","type":"Boolean"},"inventory_template_supported":{"name":"inventory_template_supported","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"plural_label":{"name":"plural_label","type":"String"},"presence_sub_menu":{"name":"presence_sub_menu","type":"Boolean"},"triggers_supported":{"name":"triggers_supported","type":"Boolean"},"id":{"name":"id","type":"Long","primary":true},"related_list_properties":{"structure_name":"com.zoho.crm.api.modules.RelatedListProperties","name":"related_list_properties","type":"com.zoho.crm.api.modules.RelatedListProperties"},"per_page":{"name":"per_page","type":"Integer"},"visibility":{"name":"visibility","type":"Integer"},"convertable":{"name":"convertable","type":"Boolean"},"editable":{"name":"editable","type":"Boolean"},"profiles":{"lookup":true,"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"},"filter_supported":{"name":"filter_supported","type":"Boolean"},"display_field":{"name":"display_field","type":"String"},"search_layout_fields":{"name":"search_layout_fields","type":"List"},"kanban_view_supported":{"name":"kanban_view_supported","type":"Boolean"},"show_as_tab":{"name":"show_as_tab","type":"Boolean"},"web_link":{"name":"web_link","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"singular_label":{"name":"singular_label","type":"String"},"viewable":{"name":"viewable","type":"Boolean"},"api_supported":{"name":"api_supported","type":"Boolean"},"api_name":{"name":"api_name","type":"String","primary":true},"quick_create":{"name":"quick_create","type":"Boolean"},"name":{"name":"name","type":"String"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"generated_type":{"values":["default","web","custom","linking"],"name":"generated_type","type":"com.zoho.crm.api.util.Choice"},"feeds_required":{"name":"feeds_required","type":"Boolean"},"scoring_supported":{"name":"scoring_supported","type":"Boolean"},"webform_supported":{"name":"webform_supported","type":"Boolean"},"arguments":{"structure_name":"com.zoho.crm.api.modules.Argument","name":"arguments","type":"List"},"emailtemplate_support":{"name":"emailTemplate_support","type":"Boolean"},"module_name":{"name":"module_name","type":"String"},"business_card_field_limit":{"name":"business_card_field_limit","type":"Integer"},"properties":{"name":"$properties","type":"List"},"custom_view":{"lookup":true,"structure_name":"com.zoho.crm.api.custom_views.CustomView","name":"custom_view","type":"com.zoho.crm.api.custom_views.CustomView"},"parent_module":{"lookup":true,"structure_name":"com.zoho.crm.api.modules.Module","name":"parent_module","type":"com.zoho.crm.api.modules.Module"},"territory":{"lookup":true,"structure_name":"com.zoho.crm.api.modules.Territory","name":"territory","type":"com.zoho.crm.api.modules.Territory"}},"com.zoho.crm.api.record.GetMassUpdateStatusParam":{"job_id":{"name":"job_id","type":"String"}},"com.zoho.crm.api.users.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.users.BodyWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.User","name":"users","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.tags.BodyWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"tags","type":"List","required":true}},"com.zoho.crm.api.attachments.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.attachments.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.record.Territory":{"include_child":{"name":"include_child","type":"Boolean"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.notes.GetNoteHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime","required":true}},"com.zoho.crm.api.tags.RecordActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.tags.RecordActionResponse","name":"data","type":"List"},"wf_scheduler":{"name":"wf_scheduler","type":"Boolean"},"success_count":{"name":"success_count","type":"String"},"locked_count":{"name":"locked_count","type":"Integer"}},"com.zoho.crm.api.layouts.ResponseWrapper":{"layouts":{"structure_name":"com.zoho.crm.api.layouts.Layout","name":"layouts","type":"List"}},"com.zoho.crm.api.bulk_read.CallBack":{"method":{"values":["post"],"name":"method","type":"com.zoho.crm.api.util.Choice","required":true},"url":{"name":"url","type":"String","required":true}},"com.zoho.crm.api.record.APIException":{"code":{"values":["FEATURE_NOT_SUPPORTED","CONVERTED_RECORD","NOT_FOUND","NO_RECORDS_FOUND","NOT_APPROVED","LIMIT_EXCEEDED","ALREADY_SCHEDULED","CANNOT_PERFORM_ACTION","CANNOT_PROCESS","INTERNAL_ERROR","INVALID_TOKEN","INVALID_DATA","MANDATORY_NOT_FOUND","NO_PERMISSION","INVALID_MODULE","NOT_SUPPORTED","PATTERN_NOT_MATCHED","OAUTH_SCOPE_MISMATCH","DUPLICATE_DATA","INVALID_QUERY","MAPPING_MISMATCH","ID_ALREADY_CONVERTED","FILE_SIZE_MORE_THAN_ALLOWED_SIZE","RECORD_IN_BLUEPRINT","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","CANNOT_DELETE","REQUIRED_PARAM_MISSING","DATA_MISMATCH","RECORD_LOCKED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"param_name","type":"String"},{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"module","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"index","type":"Integer"},{"name":"maximum_length","type":"String"},{"name":"mapped_field","type":"String"},{"name":"reason","type":"String"},{"name":"operator","type":"String"},{"name":"allowed_count","type":"Integer"},{"name":"limit","type":"Integer"},{"name":"json_path","type":"String"},{"name":"parent_api_name","type":"String"},{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["the id given seems to be invalid.","Already an Mass Action scheduler is runing for the given cvid","Scheduled Mass Operation feature is not available in your edition","can't update the converted record","Field cannot be updated in Scheduled Mass Update","Field is not visible","Field cannot be updated as it is associated with a validation rule.","Field cannot be updated as it is associated with a layout rule.This field cannot be updated in the Mass Update","Max field limit exceeded","Maximum lookup field limit in criteria exceeded","No field found","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","Territory is not supported for the given module","Please check whether the input values are correct","invalid data","permission denied","Internal server error occurred.","duplicate data","required field not found","Layout doesn't contain the Pipeline","Pipeline doesn't contain the Stage","the id given seems to be invalid","record not deleted","record not deletable","Authentication failed","One of the expected parameter is missing","mandatory param missing","invalid query formed","id already converted","body","given id is invalid","Already a Mass Action scheduler is running for the given cvid","The record is in stop processing","The record is in blue print","no permission to perform an action on this record","Record count exceeded","record not approved","no record found to update","Field Edit Permission not given","Customview not accessible","Empty response","give contact id is mismatched with the data","give account id is mismatched with the data"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.share_records.SharedThrough":{"module_1":{"lookup":true,"structure_name":"com.zoho.crm.api.modules.Module","name":"module","type":"com.zoho.crm.api.modules.Module"},"entity_name":{"name":"entity_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.fields.LookupField":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.bulk_read.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.bulk_read.ActionResponse","name":"data","type":"List"},"info":{"name":"info","type":"Map"}},"com.zoho.crm.api.modules.Argument":{"name":{"name":"name","type":"String"},"value":{"name":"value","type":"String"}},"com.zoho.crm.api.notes.GetNotesHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime","required":true}},"com.zoho.crm.api.related_records.DelinkRecordsParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.custom_views.APIException":{"code":{"values":["NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","REQUIRED_PARAM_MISSING","INVALID_MODULE","INTERNAL_ERROR","INVALID_DATA"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"expected_data_type","type":"String"},{"name":"api_name","type":"String"},{"structure_name":"com.zoho.crm.api.custom_views.Range","name":"range","type":"com.zoho.crm.api.custom_views.Range"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","The given module is not supported in API","invalid data","Invalid ID","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.GetRecordsHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.record.MassUpdateSuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"job_id","type":"String"},{"name":"id","type":"Long"},{"name":"Modified_Time","type":"DateTime"},{"name":"Created_Time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},{"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"}],"name":"details","type":"Map"},"message":{"values":["record updated","mass update scheduled successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notification.Notification":{"notify_on_related_action":{"name":"notify_on_related_action","type":"Boolean"},"deleteevents":{"name":"_delete_events","type":"Boolean"},"channel_expiry":{"name":"channel_expiry","type":"DateTime"},"resource_uri":{"name":"resource_uri","type":"String"},"resource_id":{"name":"resource_id","type":"String"},"notify_url":{"name":"notify_url","type":"String","required":true},"resource_name":{"name":"resource_name","type":"String"},"fields":{"name":"fields","type":"Map"},"channel_id":{"name":"channel_id","type":"Long","required":true,"primary":true},"events":{"required_in_update":true,"name":"events","type":"List","required":true},"token":{"name":"token","max-length":50,"type":"String","min-length":1}},"com.zoho.crm.api.fields.Unique":{"casesensitive":{"name":"casesensitive","type":"String"}},"com.zoho.crm.api.fields.Currency":{"rounding_option":{"name":"rounding_option","type":"String"},"precision":{"name":"precision","type":"Integer"}},"com.zoho.crm.api.bulk_write.FieldMapping":{"module_1":{"name":"module","type":"String"},"api_name":{"name":"api_name","type":"String","required":true},"format":{"name":"format","type":"String"},"find_by":{"name":"find_by","type":"String"},"index":{"name":"index","type":"Integer"},"default_value":{"name":"default_value","type":"Map"}},"com.zoho.crm.api.contact_roles.ActionWrapper":{"contact_roles":{"structure_name":"com.zoho.crm.api.contact_roles.ActionResponse","name":"contact_roles","type":"List"}},"com.zoho.crm.api.record.BodyWrapper":{"process":{"name":"process","type":"List"},"wf_trigger":{"name":"wf_trigger","type":"String"},"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","max-length":100,"type":"List","required":true,"min-length":1},"lar_id":{"name":"lar_id","type":"String"},"trigger":{"name":"trigger","type":"List"},"duplicate_check_fields":{"name":"duplicate_check_fields","type":"List"}},"com.zoho.crm.api.files.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.record.GetRecordsParam":{"cvid":{"name":"cvid","type":"String"},"per_page":{"name":"per_page","type":"Integer"},"sort_by":{"name":"sort_by","type":"String"},"endDateTime":{"name":"endDateTime","type":"DateTime"},"uid":{"name":"uid","type":"String"},"approved":{"name":"approved","type":"String"},"startDateTime":{"name":"startDateTime","type":"DateTime"},"include_child":{"name":"include_child","type":"String"},"converted":{"name":"converted","type":"String"},"ids":{"name":"ids","type":"Long","required":true},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"},"sort_order":{"name":"sort_order","type":"String"},"territory_id":{"name":"territory_id","type":"String"}},"com.zoho.crm.api.attachments.GetAttachmentsParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.modules.BodyWrapper":{"modules":{"structure_name":"com.zoho.crm.api.modules.Module","name":"modules","max-length":1,"type":"List","min-length":1}},"com.zoho.crm.api.record.MassUpdateActionHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.MassUpdateActionWrapper"],"interface":true},"com.zoho.crm.api.variable_groups.ResponseWrapper":{"variable_groups":{"structure_name":"com.zoho.crm.api.variable_groups.VariableGroup","name":"variable_groups","type":"List"}},"com.zoho.crm.api.layouts.Layout":{"created_time":{"name":"created_time","type":"DateTime"},"convert_mapping":{"name":"convert_mapping","type":"Map"},"modified_time":{"name":"modified_time","type":"DateTime"},"visible":{"name":"visible","type":"Boolean"},"created_for":{"structure_name":"com.zoho.crm.api.users.User","name":"created_for","type":"com.zoho.crm.api.users.User"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"profiles":{"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"},"id":{"name":"id","type":"Long","primary":true},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"sections":{"structure_name":"com.zoho.crm.api.layouts.Section","name":"sections","type":"List"},"status":{"name":"status","type":"Integer"}},"com.zoho.crm.api.record.DeletedRecordsWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.DeletedRecord","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.record.Comment":{"commented_by":{"name":"commented_by","type":"String"},"commented_time":{"name":"commented_time","type":"DateTime"},"comment_content":{"name":"comment_content","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.Reminder":{"period":{"name":"period","type":"String","required":true},"unit":{"name":"unit","type":"String","required":true}},"com.zoho.crm.api.blue_print.ResponseWrapper":{"blueprint":{"structure_name":"com.zoho.crm.api.blue_print.BluePrint","name":"blueprint","type":"com.zoho.crm.api.blue_print.BluePrint"}},"com.zoho.crm.api.blue_print.ValidationError":{"api_name":{"name":"api_name","type":"String"},"message":{"name":"message","type":"String"}},"com.zoho.crm.api.blue_print.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["transition updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notes.ResponseHandler":{"classes":["com.zoho.crm.api.notes.APIException","com.zoho.crm.api.notes.ResponseWrapper"],"interface":true},"com.zoho.crm.api.custom_views.ResponseHandler":{"classes":["com.zoho.crm.api.custom_views.ResponseWrapper","com.zoho.crm.api.custom_views.APIException"],"interface":true},"com.zoho.crm.api.blue_print.Transition":{"next_transitions":{"lookup":true,"structure_name":"com.zoho.crm.api.blue_print.NextTransition","name":"next_transitions","type":"List"},"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"com.zoho.crm.api.record.Record","skip_mandatory":true},"next_field_value":{"name":"next_field_value","type":"String"},"name":{"name":"name","type":"String"},"criteria_matched":{"name":"criteria_matched","type":"Boolean"},"id":{"name":"id","type":"Long"},"fields":{"lookup":true,"structure_name":"com.zoho.crm.api.fields.Field","name":"fields","type":"List"},"type":{"name":"type","type":"String"},"criteria_message":{"name":"criteria_message","type":"String"},"percent_partial_save":{"name":"percent_partial_save","type":"Double"},"execution_time":{"name":"execution_time","type":"DateTime"}},"com.zoho.crm.api.variables.GetVariableForAPINameParam":{"group":{"name":"group","type":"String","required":true}},"com.zoho.crm.api.tags.Info":{"count":{"name":"count","type":"Integer"},"allowed_count":{"name":"allowed_count","type":"Integer"}},"com.zoho.crm.api.fields.ToolTip":{"name":{"name":"name","type":"String"},"value":{"name":"value","type":"String"}},"com.zoho.crm.api.tags.MergeWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.ConflictWrapper","name":"tags","max-length":1,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.record.MassUpdateResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.MassUpdateResponse","name":"data","type":"List"}},"com.zoho.crm.api.org.ResponseWrapper":{"org":{"structure_name":"com.zoho.crm.api.org.Org","name":"org","type":"List"}},"com.zoho.crm.api.query.ResponseHandler":{"classes":["com.zoho.crm.api.query.ResponseWrapper","com.zoho.crm.api.query.APIException"],"interface":true},"com.zoho.crm.api.modules.ResponseWrapper":{"modules":{"structure_name":"com.zoho.crm.api.modules.Module","name":"modules","type":"List"}},"com.zoho.crm.api.share_records.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["record will be shared successfully","Sharing Revoked"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.share_records.ActionHandler":{"classes":["com.zoho.crm.api.share_records.APIException","com.zoho.crm.api.share_records.ActionWrapper"],"interface":true},"com.zoho.crm.api.tags.ActionHandler":{"classes":["com.zoho.crm.api.tags.ActionWrapper","com.zoho.crm.api.tags.APIException"],"interface":true},"com.zoho.crm.api.currencies.ActionHandler":{"classes":["com.zoho.crm.api.currencies.ActionWrapper","com.zoho.crm.api.currencies.APIException"],"interface":true},"com.zoho.crm.api.record.GetRecordParam":{"cvid":{"name":"cvid","type":"String"},"uid":{"name":"uid","type":"String"},"approved":{"name":"approved","type":"String"},"startDateTime":{"name":"startDateTime","type":"DateTime"},"include_child":{"name":"include_child","type":"String"},"converted":{"name":"converted","type":"String"},"fields":{"name":"fields","type":"String"},"endDateTime":{"name":"endDateTime","type":"DateTime"},"territory_id":{"name":"territory_id","type":"String"}},"com.zoho.crm.api.attachments.ActionResponse":{"classes":["com.zoho.crm.api.attachments.SuccessResponse","com.zoho.crm.api.attachments.APIException"],"interface":true},"com.zoho.crm.api.bulk_write.ActionResponse":{"classes":["com.zoho.crm.api.bulk_write.SuccessResponse","com.zoho.crm.api.bulk_write.APIException"],"interface":true},"com.zoho.crm.api.users.ActionWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.ActionResponse","name":"users","type":"List"}},"com.zoho.crm.api.record.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.notes.ActionHandler":{"classes":["com.zoho.crm.api.notes.ActionWrapper","com.zoho.crm.api.notes.APIException"],"interface":true},"com.zoho.crm.api.related_lists.ResponseWrapper":{"related_lists":{"structure_name":"com.zoho.crm.api.related_lists.RelatedList","name":"related_lists","type":"List"}},"com.zoho.crm.api.bulk_write.CallBack":{"method":{"values":["post"],"name":"method","type":"com.zoho.crm.api.util.Choice","required":true},"url":{"name":"url","type":"String","required":true}},"com.zoho.crm.api.query.BodyWrapper":{"select_query":{"name":"select_query","type":"String","required":true}},"com.zoho.crm.api.custom_views.SharedDetails":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"subordinates":{"name":"subordinates","type":"Boolean"}},"com.zoho.crm.api.share_records.ShareRecord":{"share_related_records":{"name":"share_related_records","type":"Boolean"},"shared_through":{"lookup":true,"structure_name":"com.zoho.crm.api.share_records.SharedThrough","name":"shared_through","type":"com.zoho.crm.api.share_records.SharedThrough"},"shared_time":{"name":"shared_time","type":"DateTime"},"permission":{"required_in_update":true,"name":"permission","type":"String","required":true},"shared_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"shared_by","type":"com.zoho.crm.api.users.User"},"user":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","required_in_update":true,"name":"user","type":"com.zoho.crm.api.users.User","required":true}},"com.zoho.crm.api.bulk_read.Query":{"cvid":{"name":"cvid","type":"String"},"module_1":{"name":"module","type":"String","required":true},"criteria":{"structure_name":"com.zoho.crm.api.bulk_read.Criteria","name":"criteria","type":"com.zoho.crm.api.bulk_read.Criteria"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"List"}},"com.zoho.crm.api.share_records.APIException":{"code":{"values":["NO_PERMISSION","BAD_REQUEST","INVALID_MODULE","SHARE_LIMIT_EXCEEDED","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","ENTITY_ID_INVALID"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"}],"name":"details","type":"Map"},"message":{"values":["Scheduler is running","cannot share to the user","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid.","invalid oauth scope to access this URL","Please check if the URL trying to access is a correct one.","Permission is invalid","record is already visible to the user.","Cannot share a record to more than 10 users.","No sharing through this record is available to revoke.","ENTITY_ID_INVALID"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.MassUpdateActionResponse":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.MassUpdateSuccessResponse"],"interface":true},"com.zoho.crm.api.fields.ResponseHandler":{"classes":["com.zoho.crm.api.fields.ResponseWrapper","com.zoho.crm.api.fields.APIException"],"interface":true},"com.zoho.crm.api.notification.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"structure_name":"com.zoho.crm.api.notification.Notification","name":"events","type":"List"},{"name":"resource_uri","type":"String"},{"name":"resource_id","type":"String"},{"name":"channel_id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["Successfully subscribed for actions-watch of the given module","Successfully un-subscribed from actions-watch","Successfully updated the subscribe details","Successfully removed the subscribe details"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.org.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","INVALID_DATA"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the request does not contain any file","invalid file type","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.territories.APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","CURRENCIES_NOT_ENABLED","FEATURE_NOT_SUPPORTED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.ResponseHandler":{"classes":["com.zoho.crm.api.users.ResponseWrapper","com.zoho.crm.api.users.APIException"],"interface":true},"com.zoho.crm.api.currencies.BaseCurrencyActionHandler":{"classes":["com.zoho.crm.api.currencies.APIException","com.zoho.crm.api.currencies.BaseCurrencyActionWrapper"],"interface":true},"com.zoho.crm.api.org.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["photo uploaded successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.Theme":{"normal_tab":{"lookup":true,"structure_name":"com.zoho.crm.api.users.TabTheme","name":"normal_tab","type":"com.zoho.crm.api.users.TabTheme"},"selected_tab":{"lookup":true,"structure_name":"com.zoho.crm.api.users.TabTheme","name":"selected_tab","type":"com.zoho.crm.api.users.TabTheme"},"new_background":{"name":"new_background","type":"String"},"background":{"name":"background","type":"String"},"screen":{"name":"screen","type":"String"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.record.ActionResponse":{"classes":["com.zoho.crm.api.record.SuccessResponse","com.zoho.crm.api.record.APIException"],"interface":true},"com.zoho.crm.api.bulk_read.Result":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"download_url":{"name":"download_url","type":"String"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.tags.ActionResponse":{"classes":["com.zoho.crm.api.tags.SuccessResponse","com.zoho.crm.api.tags.APIException"],"interface":true},"com.zoho.crm.api.fields.AutoNumber":{"prefix":{"name":"prefix","type":"String"},"start_number":{"name":"start_number","type":"Integer"},"suffix":{"name":"suffix","type":"String"}},"com.zoho.crm.api.related_records.APIException":{"code":{"values":["NO_PERMISSION","CANNOT_BE_UPDATED","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"id","type":"Long"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid data","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.GetDeletedRecordsHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.profiles.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.layouts.GetLayoutsParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.record.Consent":{"owner":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Owner","type":"com.zoho.crm.api.users.User"},"contact_through_email":{"name":"Contact_Through_Email","type":"Boolean"},"data_processing_basis":{"name":"Data_Processing_Basis","type":"String"},"contact_through_social":{"name":"Contact_Through_Social","type":"Boolean"},"contact_through_survey":{"name":"Contact_Through_Survey","type":"Boolean"},"contact_through_phone":{"name":"Contact_Through_Phone","type":"Boolean"},"consent_remarks":{"name":"Consent_Remarks","type":"String"},"consent_date":{"name":"Consent_Date","type":"Date"},"mail_sent_time":{"name":"Mail_Sent_Time","type":"DateTime"},"consent_through":{"name":"Consent_Through","type":"String"}},"com.zoho.crm.api.modules.Territory":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"subordinates":{"name":"subordinates","type":"Boolean"}},"com.zoho.crm.api.record.InventoryLineItems":{"product":{"lookup":true,"structure_name":"com.zoho.crm.api.record.LineItemProduct","name":"product","type":"com.zoho.crm.api.record.LineItemProduct","required":true},"quantity":{"name":"quantity","type":"Double","required":true},"total_after_discount":{"name":"total_after_discount","type":"Double"},"net_total":{"name":"net_total","type":"Double"},"book":{"name":"book","type":"Double"},"discount":{"name":"Discount","type":"String"},"tax":{"name":"Tax","type":"Double"},"list_price":{"name":"list_price","type":"Double"},"unit_price":{"name":"unit_price","type":"Double"},"quantity_in_stock":{"name":"quantity_in_stock","type":"Double"},"total":{"name":"total","type":"Double"},"product_description":{"name":"product_description","type":"String"},"line_tax":{"lookup":true,"structure_name":"com.zoho.crm.api.record.LineTax","name":"line_tax","type":"List"}},"com.zoho.crm.api.bulk_write.Resource":{"field_mappings":{"structure_name":"com.zoho.crm.api.bulk_write.FieldMapping","name":"field_mappings","type":"List"},"file":{"structure_name":"com.zoho.crm.api.bulk_write.File","name":"file","type":"com.zoho.crm.api.bulk_write.File"},"module_1":{"name":"module","type":"String","required":true},"ignore_empty":{"name":"ignore_empty","type":"Boolean"},"file_id":{"name":"file_id","type":"String","required":true},"find_by":{"name":"find_by","type":"String"},"type":{"values":["data"],"name":"type","type":"com.zoho.crm.api.util.Choice","required":true},"status":{"values":["ADDED","IN PROGRESS","COMPLETED","SKIPPED","FAILED"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"duplicate_field":{"name":"duplicate_field","type":"String"},"action":{"values":["insert","update"],"name":"action","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"Modified_Time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},{"name":"Created_Time","type":"DateTime"},{"name":"id","type":"Long"},{"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"}],"name":"details","type":"Map"},"message":{"values":["record updated","record deleted","record added","photo uploaded successfully","Photo deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notification.ActionWrapper":{"watch":{"structure_name":"com.zoho.crm.api.notification.ActionResponse","name":"watch","type":"List"}},"com.zoho.crm.api.notes.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.share_records.BodyWrapper":{"share":{"structure_name":"com.zoho.crm.api.share_records.ShareRecord","name":"share","max-length":10,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.modules.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","INVALID_MODULE","INVALID_DATA","LIMIT_EXCEEDED","DUPLICATE_DATA","NOT_ALLOWED","NO_PERMISSION"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"limit","type":"Integer"},{"name":"maximum_length","type":"Integer"},{"name":"permissions","type":"List"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the given module is not supported in api","invalid data","Api name duplicate","Api name is not valid","System keyword not allowed in api name","Api name update not allowed","No permission to update API name","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.blue_print.BluePrint":{"data":{"structure_name":"com.zoho.crm.api.record.Record","required_in_update":true,"name":"data","type":"com.zoho.crm.api.record.Record","skip_mandatory":true},"process_info":{"lookup":true,"structure_name":"com.zoho.crm.api.blue_print.ProcessInfo","name":"process_info","type":"com.zoho.crm.api.blue_print.ProcessInfo"},"transition_id":{"required_in_update":true,"name":"transition_id","type":"Long"},"transitions":{"lookup":true,"structure_name":"com.zoho.crm.api.blue_print.Transition","name":"transitions","type":"List"}},"com.zoho.crm.api.record.DeleteRecordsParam":{"wf_trigger":{"name":"wf_trigger","type":"String"},"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.contact_roles.ContactRole":{"sequence_number":{"name":"sequence_number","type":"Integer"},"name":{"unique":true,"name":"name","type":"String","required":true},"id":{"name":"id","type":"Long","primary":true}},"com.zoho.crm.api.record.DeletedRecord":{"deleted_by":{"structure_name":"com.zoho.crm.api.users.User","name":"deleted_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"display_name":{"name":"display_name","type":"String"},"type":{"name":"type","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"deleted_time":{"name":"deleted_time","type":"DateTime"}},"com.zoho.crm.api.layouts.GetLayoutParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.variables.ActionHandler":{"classes":["com.zoho.crm.api.variables.APIException","com.zoho.crm.api.variables.ActionWrapper"],"interface":true},"com.zoho.crm.api.taxes.ResponseHandler":{"classes":["com.zoho.crm.api.taxes.APIException","com.zoho.crm.api.taxes.ResponseWrapper"],"interface":true},"com.zoho.crm.api.custom_views.GetCustomViewsParam":{"per_page":{"name":"per_page","type":"Integer"},"module_1":{"name":"module","type":"String"},"page":{"name":"page","type":"Integer"}},"com.zoho.crm.api.users.GetUsersParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"type":{"name":"type","type":"String","required":true}},"com.zoho.crm.api.related_records.GetRelatedRecordsParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"}},"com.zoho.crm.api.taxes.APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"name","type":"String"},{"name":"value","type":"String"},{"name":"maximum_length","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","required field not found","Sequence number out of range","Sequence number cannot be repeated in same request","Given ID does not exist","tax not deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.related_records.ResponseHandler":{"classes":["com.zoho.crm.api.related_records.APIException","com.zoho.crm.api.related_records.ResponseWrapper","com.zoho.crm.api.related_records.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.contact_roles.ResponseWrapper":{"contact_roles":{"structure_name":"com.zoho.crm.api.contact_roles.ContactRole","name":"contact_roles","type":"List"}},"com.zoho.crm.api.custom_views.GetCustomViewParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.record.LeadConverter":{"notify_lead_owner":{"name":"notify_lead_owner","type":"Boolean"},"assign_to":{"name":"assign_to","type":"String"},"deals":{"structure_name":"com.zoho.crm.api.record.Record","module":"Deals","name":"Deals","type":"com.zoho.crm.api.record.Record"},"carry_over_tags":{"structure_name":"com.zoho.crm.api.record.CarryOverTags","name":"carry_over_tags","type":"com.zoho.crm.api.record.CarryOverTags"},"accounts":{"name":"Accounts","type":"String"},"overwrite":{"name":"overwrite","type":"Boolean"},"notify_new_entity_owner":{"name":"notify_new_entity_owner","type":"Boolean"},"contacts":{"name":"Contacts","type":"String"}},"com.zoho.crm.api.files.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.files.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.bulk_write.SuccessResponse":{"code":{"values":["FILE_UPLOAD_SUCCESS","SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"file_id","type":"Long"},{"name":"created_time","type":"DateTime"},{"name":"id","type":"Long"},{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"}],"name":"details","type":"Map"},"message":{"values":["file uploaded.","success"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}}}
1
+ {"com.zoho.crm.api.pipeline.GetPipelineParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.bulk_write.BulkWriteResponse":{"result":{"structure_name":"com.zoho.crm.api.bulk_write.Result","name":"result","type":"com.zoho.crm.api.bulk_write.Result"},"created_time":{"name":"created_time","type":"DateTime"},"resource":{"structure_name":"com.zoho.crm.api.bulk_write.Resource","name":"resource","type":"List"},"character_encoding":{"name":"character_encoding","type":"String"},"callback":{"structure_name":"com.zoho.crm.api.bulk_write.CallBack","name":"callback","type":"com.zoho.crm.api.bulk_write.CallBack"},"id":{"name":"id","type":"Long"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"operation":{"name":"operation","type":"String"},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.profiles.ResponseHandler":{"classes":["com.zoho.crm.api.profiles.APIException","com.zoho.crm.api.profiles.ResponseWrapper"],"interface":true},"com.zoho.crm.api.inventory_templates.GetInventoryTemplatebyIDParam":{"module_1":{"name":"module","type":"String"},"sort_by":{"name":"sort_by","type":"String"},"category":{"name":"category","type":"String"},"sort_order":{"name":"sort_order","type":"String"}},"com.zoho.crm.api.currencies.ActionResponse":{"classes":["com.zoho.crm.api.currencies.SuccessResponse","com.zoho.crm.api.currencies.APIException"],"interface":true},"com.zoho.crm.api.custom_views.Range":{"from":{"name":"from","type":"Integer"},"to":{"name":"to","type":"Integer"}},"com.zoho.crm.api.variables.GetVariablesParam":{"group":{"name":"group","type":"String","required":true}},"com.zoho.crm.api.record.Tax":{"id":{"name":"id","type":"Long"},"value":{"name":"value","type":"String"}},"com.zoho.crm.api.blue_print.ResponseHandler":{"classes":["com.zoho.crm.api.blue_print.ResponseWrapper","com.zoho.crm.api.blue_print.APIException"],"interface":true},"com.zoho.crm.api.bulk_write.File":{"skipped_count":{"name":"skipped_count","type":"Integer"},"updated_count":{"name":"updated_count","type":"Integer"},"total_count":{"name":"total_count","type":"Integer"},"name":{"name":"name","type":"String"},"added_count":{"name":"added_count","type":"Integer"},"status":{"values":["ADDED","IN PROGRESS","COMPLETED","SKIPPED","FAILED"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.MassUpdateActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.MassUpdateActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.notes.APIException":{"code":{"values":["NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","MANDATORY_NOT_FOUND","INVALID_DATA","NOT_SUPPORTED","REQUIRED_PARAM_MISSING"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"api_name","type":"String"},{"name":"param","type":"String"},{"name":"id","type":"Long"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the id given seems to be invalid","One of the expected parameter is missing","record not deleted","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.tags.UpdateTagParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.send_mail.DataSubjectRequest":{"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.related_records.GetRelatedRecordHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.pipeline.TransferPipeLine":{"pipeline":{"structure_name":"com.zoho.crm.api.pipeline.Pipeline","name":"pipeline","type":"com.zoho.crm.api.pipeline.Pipeline","skip_mandatory":true,"required":true},"stages":{"structure_name":"com.zoho.crm.api.pipeline.Stage","name":"stages","type":"List","required":true}},"com.zoho.crm.api.users.ActionResponse":{"classes":["com.zoho.crm.api.users.SuccessResponse","com.zoho.crm.api.users.APIException"],"interface":true},"com.zoho.crm.api.currencies.BaseCurrencyWrapper":{"base_currency":{"structure_name":"com.zoho.crm.api.currencies.Currency","name":"base_currency","type":"com.zoho.crm.api.currencies.Currency","required":true}},"com.zoho.crm.api.notification.ActionHandler":{"classes":["com.zoho.crm.api.notification.APIException","com.zoho.crm.api.notification.ActionWrapper"],"interface":true},"com.zoho.crm.api.taxes.Preference":{"auto_populate_tax":{"name":"auto_populate_tax","type":"Boolean"},"modify_tax_rates":{"name":"modify_tax_rates","type":"Boolean"}},"com.zoho.crm.api.profiles.Category":{"display_label":{"name":"display_label","type":"String"},"module_1":{"name":"module","type":"String"},"permissions_details":{"name":"permissions_details","type":"List"},"name":{"name":"name","type":"String"}},"com.zoho.crm.api.blue_print.BodyWrapper":{"blueprint":{"structure_name":"com.zoho.crm.api.blue_print.BluePrint","name":"blueprint","max-length":1,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.tags.AddTagsToRecordParam":{"over_write":{"name":"over_write","type":"String"},"tag_names":{"name":"tag_names","type":"String","required":true}},"com.zoho.crm.api.layouts.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","REQUIRED_PARAM_MISSING","INTERNAL_ERROR","NO_PERMISSION","INVALID_DATA"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","User does not have permission to access this layout.","Layout does not belongs to the given module","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.CustomizeInfo":{"notes_desc":{"name":"notes_desc","type":"Boolean"},"show_right_panel":{"name":"show_right_panel","type":"String"},"bc_view":{"name":"bc_view","type":"String"},"show_home":{"name":"show_home","type":"Boolean"},"show_detail_view":{"name":"show_detail_view","type":"Boolean"},"unpin_recent_item":{"name":"unpin_recent_item","type":"String"}},"com.zoho.crm.api.bulk_read.ResponseHandler":{"classes":["com.zoho.crm.api.bulk_read.ResponseWrapper","com.zoho.crm.api.bulk_read.APIException","com.zoho.crm.api.bulk_read.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.notification.ResponseHandler":{"classes":["com.zoho.crm.api.notification.APIException","com.zoho.crm.api.notification.ResponseWrapper"],"interface":true},"com.zoho.crm.api.query.APIException":{"code":{"values":["INVALID_QUERY","OAUTH_SCOPE_MISMATCH","SYNTAX_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"near","type":"String"},{"name":"column","type":"Integer"},{"name":"line","type":"Integer"},{"name":"clause","type":"String"},{"name":"by","type":"String"},{"name":"limit","type":"Integer"},{"name":"column_name","type":"String"},{"name":"reason","type":"String"},{"name":"module","type":"String"},{"name":"data_type","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"operator","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid query formed","value given seems to be invalid for the column","data type not supported","column given seems to be invalid","invalid oauth scope to access this URL","limit exceeded","given coql query not supported","select columns limit exceeded","join limit exceeded","missing clause","error occured while parsing the query","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the module name given seems to be invalid","duplicate data","required field not found","invalid data","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.bulk_write.UploadFileHeader":{"feature":{"values":["bulk-write"],"name":"feature","type":"String"},"X_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.custom_views.Criteria":{"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com.zoho.crm.api.util.Choice"},"field":{"structure_name":"com.zoho.crm.api.fields.Field","name":"field","type":"com.zoho.crm.api.fields.Field"},"group_operator":{"values":["and","or"],"name":"group_operator","type":"com.zoho.crm.api.util.Choice"},"value":{"name":"value","type":"Object"},"group":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"group","type":"List"}},"com.zoho.crm.api.pipeline.TransferAndDeleteWrapper":{"transfer_pipeline":{"structure_name":"com.zoho.crm.api.pipeline.TransferPipeLine","name":"transfer_pipeline","type":"List"}},"com.zoho.crm.api.record.Widget":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.LineItemProduct":{"name":{"name":"name","type":"String"},"currency":{"name":"Currency","type":"String"},"product_code":{"name":"Product_Code","type":"String"}},"com.zoho.crm.api.attachments.UploadLinkAttachmentParam":{"attachmentUrl":{"name":"attachmentUrl","type":"String"}},"com.zoho.crm.api.pipeline.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","REQUIRED_PARAM_MISSING","INTERNAL_ERROR","NO_PERMISSION","INVALID_DATA","MANDATORY_NOT_FOUND"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Invalid from id","required field not found","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","User does not have permission to access this layout.","Internal server error occurred.","Pipeline created","Pipeline updated","invalid layoutid","required field not found","Invalid child option id","Duplicate pipeline label found","invalid pick_list_values id","Invalid child option id","invalid pick_list_values id","Cannot delete the last stage associated with the pipeline","Sequence number should be an integer","Default value should be boolean","The pipeline given as display label is being deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.org.LicenseDetails":{"paid_expiry":{"name":"paid_expiry","type":"DateTime"},"users_license_purchased":{"name":"users_license_purchased","type":"Long"},"trial_type":{"name":"trial_type","type":"String"},"trial_expiry":{"name":"trial_expiry","type":"String"},"paid":{"name":"paid","type":"Boolean"},"paid_type":{"name":"paid_type","type":"String"}},"com.zoho.crm.api.record.MassUpdateTerritory":{"include_child":{"name":"include_child","type":"Boolean"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.roles.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.profiles.Section":{"name":{"name":"name","type":"String"},"categories":{"structure_name":"com.zoho.crm.api.profiles.Category","name":"categories","type":"List"}},"com.zoho.crm.api.tags.CountWrapper":{"count":{"name":"count","type":"String"}},"com.zoho.crm.api.tags.ResponseHandler":{"classes":["com.zoho.crm.api.tags.ResponseWrapper","com.zoho.crm.api.tags.APIException"],"interface":true},"com.zoho.crm.api.inventory_templates.InventoryTemplate":{"created_time":{"name":"created_time","type":"DateTime"},"module_1":{"structure_name":"com.zoho.crm.api.modules.Module","name":"module","type":"com.zoho.crm.api.modules.Module"},"subject":{"name":"subject","type":"String"},"description":{"name":"description","type":"String"},"type":{"name":"type","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"content":{"name":"content","type":"String"},"modified_time":{"name":"modified_time","type":"DateTime"},"folder":{"structure_name":"com.zoho.crm.api.inventory_templates.InventoryTemplate","name":"folder","type":"com.zoho.crm.api.inventory_templates.InventoryTemplate"},"last_usage_time":{"name":"last_usage_time","type":"DateTime"},"associated":{"name":"associated","type":"Boolean"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"editor_mode":{"name":"editor_mode","type":"String"},"favorite":{"name":"favorite","type":"Boolean"}},"com.zoho.crm.api.wizards.Button":{"sequence_number":{"name":"sequence_number","type":"Integer"},"display_label":{"name":"display_label","type":"String"},"color":{"name":"color","type":"String"},"shape":{"name":"shape","type":"String"},"background_color":{"name":"background_color","type":"String"},"visibility":{"name":"visibility","type":"String"},"criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"target_screen":{"structure_name":"com.zoho.crm.api.wizards.Screen","name":"target_screen","type":"com.zoho.crm.api.wizards.Screen"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"transition":{"structure_name":"com.zoho.crm.api.wizards.Transition","name":"transition","type":"com.zoho.crm.api.wizards.Transition"}},"com.zoho.crm.api.pipeline.GetPipelinesParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.email_templates.ResponseWrapper":{"email_templates":{"structure_name":"com.zoho.crm.api.email_templates.EmailTemplate","name":"email_templates","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.taxes.ActionResponse":{"classes":["com.zoho.crm.api.taxes.SuccessResponse","com.zoho.crm.api.taxes.APIException"],"interface":true},"com.zoho.crm.api.bulk_read.ActionHandler":{"classes":["com.zoho.crm.api.bulk_read.APIException","com.zoho.crm.api.bulk_read.ActionWrapper"],"interface":true},"com.zoho.crm.api.pipeline.PickListValue":{"display_value":{"name":"display_value","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer","required":true},"forecast_category":{"structure_name":"com.zoho.crm.api.pipeline.ForecastCategory","name":"forecast_category","type":"com.zoho.crm.api.pipeline.ForecastCategory"},"actual_value":{"name":"actual_value","type":"String"},"id":{"name":"id","type":"Long","required":true},"forecast_type":{"name":"forecast_type","type":"String"},"delete":{"name":"_delete","type":"Boolean"}},"com.zoho.crm.api.tags.Tag":{"created_time":{"name":"created_time","type":"DateTime"},"modified_time":{"name":"modified_time","type":"DateTime"},"name":{"required_in_update":true,"name":"name","type":"String","required":true},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"color_code":{"name":"color_code","type":"String"}},"com.zoho.crm.api.notes.DeleteNotesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.tags.APIException":{"code":{"values":["REQUIRED_PARAM_MISSING","MANDATORY_NOT_FOUND","INVALID_MODULE","DUPLICATE_DATA","TAG_ID_NOT_FOUND","FAILURE","INTERNAL_ERROR","NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","LICENSE_LIMIT_EXCEEDED","NOT_SUPPORTED_FEATURE"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"available_limit","type":"Integer"},{"name":"limit","type":"Integer"},{"name":"json_path","type":"String"},{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"param","type":"String"},{"name":"permissions","type":"List"},{"name":"maximum_length","type":"Integer"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["tags merged successfully","Tag limit for record has been exceeded.","Tag Name can contain only 25 characters","Tag limit for module has been exceeded.","your edition doesn't support this feature","permission denied to update records","permission denied","Given tag present with different colour already.","The colour is not supported","tags not found","special characters found in the given name","One of the expected parameter is missing","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid","duplicate data","tag edition limit exceeded","invalid data","tags not updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.share_records.GetSharedRecordDetailsParam":{"view":{"name":"view","type":"String"},"sharedTo":{"name":"sharedTo","type":"Long"}},"com.zoho.crm.api.notification.DisableNotificationsParam":{"channel_ids":{"name":"channel_ids","type":"Long"}},"com.zoho.crm.api.bulk_write.ResponseHandler":{"classes":["com.zoho.crm.api.bulk_write.APIException","com.zoho.crm.api.bulk_write.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.pipeline.ForecastCategory":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.layouts.Properties":{"reorder_rows":{"name":"reorder_rows","type":"Boolean"},"tooltip":{"structure_name":"com.zoho.crm.api.fields.ToolTip","name":"tooltip","type":"com.zoho.crm.api.fields.ToolTip"},"maximum_rows":{"name":"maximum_rows","type":"Integer"}},"com.zoho.crm.api.record.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.wizards.ResponseWrapper":{"wizards":{"structure_name":"com.zoho.crm.api.wizards.Wizard","name":"wizards","type":"List"}},"com.zoho.crm.api.profiles.ResponseWrapper":{"profiles":{"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"}},"com.zoho.crm.api.notification.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.related_records.BodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.email_templates.EmailTemplate":{"created_time":{"name":"created_time","type":"DateTime"},"attachments":{"structure_name":"com.zoho.crm.api.email_templates.Attachment","name":"attachments","type":"List"},"module_1":{"structure_name":"com.zoho.crm.api.modules.Module","name":"module","type":"com.zoho.crm.api.modules.Module"},"subject":{"name":"subject","type":"String"},"description":{"name":"description","type":"String"},"type":{"name":"type","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"content":{"name":"content","type":"String"},"modified_time":{"name":"modified_time","type":"DateTime"},"folder":{"structure_name":"com.zoho.crm.api.email_templates.EmailTemplate","name":"folder","type":"com.zoho.crm.api.email_templates.EmailTemplate"},"last_usage_time":{"name":"last_usage_time","type":"DateTime"},"associated":{"name":"associated","type":"Boolean"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"consent_linked":{"name":"consent_linked","type":"Boolean"},"id":{"name":"id","type":"Long","primary":true},"editor_mode":{"name":"editor_mode","type":"String"},"favorite":{"name":"favorite","type":"Boolean"}},"com.zoho.crm.api.tags.GetTagsParam":{"module_1":{"name":"module","type":"String","required":true},"my_tags":{"values":["true","false"],"name":"my_tags","type":"String"}},"com.zoho.crm.api.tags.ConflictWrapper":{"conflict_id":{"name":"conflict_id","type":"String","required":true}},"com.zoho.crm.api.record.MultiSelectLookup":{"fieldname":{"name":"fieldName","type":"Map"},"id":{"name":"id","type":"Long"},"has_more":{"name":"$has_more","type":"Map"}},"com.zoho.crm.api.fields.Formula":{"return_type":{"name":"return_type","type":"String"},"expression":{"name":"expression","type":"String"}},"com.zoho.crm.api.custom_views.Info":{"per_page":{"name":"per_page","type":"Integer"},"default":{"name":"default","type":"String"},"count":{"name":"count","type":"Integer"},"translation":{"structure_name":"com.zoho.crm.api.custom_views.Translation","name":"translation","type":"com.zoho.crm.api.custom_views.Translation"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.bulk_read.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.bulk_read.JobDetail","name":"data","type":"List"}},"com.zoho.crm.api.send_mail.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.send_mail.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.variables.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["variable added","variable updated","variable deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.attachments.ResponseHandler":{"classes":["com.zoho.crm.api.attachments.APIException","com.zoho.crm.api.attachments.ResponseWrapper","com.zoho.crm.api.attachments.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.notes.GetNoteParam":{"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.taxes.ActionHandler":{"classes":["com.zoho.crm.api.taxes.ActionWrapper","com.zoho.crm.api.taxes.APIException"],"interface":true},"com.zoho.crm.api.blue_print.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","RECORD_NOT_IN_PROCESS","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"message","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"info_message","type":"String"},{"name":"parent_api_name","type":"String"},{"structure_name":"com.zoho.crm.api.blue_print.ValidationError","name":"validation_error","type":"List"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","invalid transition","invalid data","record not in process","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.files.UploadFilesParam":{"type":{"name":"type","type":"String","required":true}},"com.zoho.crm.api.taxes.Tax":{"display_label":{"name":"display_label","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"name":{"name":"name","type":"String","required":true},"id":{"name":"id","type":"Long","primary":true},"value":{"name":"value","type":"Double","required":true}},"com.zoho.crm.api.related_lists.RelatedList":{"sequence_number":{"name":"sequence_number","type":"String"},"display_label":{"name":"display_label","type":"String"},"module_1":{"name":"module","type":"String"},"api_name":{"name":"api_name","type":"String"},"name":{"name":"name","type":"String"},"action":{"name":"action","type":"String"},"id":{"name":"id","type":"Long","primary":true},"href":{"name":"href","type":"String"},"type":{"name":"type","type":"String"},"connectedmodule":{"name":"connectedmodule","type":"String"},"linkingmodule":{"name":"linkingmodule","type":"String"}},"com.zoho.crm.api.profiles.GetProfilesHeader":{"if_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.pipeline.UpdatePipelineParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.wizards.Connection":{"source_button":{"structure_name":"com.zoho.crm.api.wizards.Button","name":"source_button","type":"com.zoho.crm.api.wizards.Button"},"target_screen":{"structure_name":"com.zoho.crm.api.wizards.Screen","name":"target_screen","type":"com.zoho.crm.api.wizards.Screen"}},"com.zoho.crm.api.custom_views.Translation":{"public_views":{"name":"public_views","type":"String"},"other_users_views":{"name":"other_users_views","type":"String"},"shared_with_me":{"name":"shared_with_me","type":"String"},"created_by_me":{"name":"created_by_me","type":"String"}},"com.zoho.crm.api.tags.ResponseWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"tags","type":"List"},"info":{"structure_name":"com.zoho.crm.api.tags.Info","name":"info","type":"com.zoho.crm.api.tags.Info"}},"com.zoho.crm.api.send_mail.Mail":{"cc":{"structure_name":"com.zoho.crm.api.send_mail.UserAddress","name":"cc","type":"List"},"template":{"structure_name":"com.zoho.crm.api.send_mail.Template","name":"template","interface":true,"type":"com.zoho.crm.api.send_mail.Template"},"data_subject_request":{"structure_name":"com.zoho.crm.api.send_mail.DataSubjectRequest","name":"data_subject_request","type":"com.zoho.crm.api.send_mail.DataSubjectRequest"},"bcc":{"structure_name":"com.zoho.crm.api.send_mail.UserAddress","name":"bcc","type":"List"},"attachments":{"structure_name":"com.zoho.crm.api.attachments.Attachment","name":"attachments","type":"List"},"subject":{"name":"subject","type":"String"},"view_type":{"name":"view_type","type":"String"},"mail_format":{"name":"mail_format","type":"String"},"scheduled_time":{"name":"scheduled_time","type":"DateTime"},"content":{"name":"content","type":"String"},"in_reply_to":{"name":"in_reply_to","type":"String"},"paper_type":{"name":"paper_type","type":"String"},"consent_email":{"name":"consent_email","type":"Boolean"},"org_email":{"name":"org_email","type":"Boolean"},"reply_to":{"structure_name":"com.zoho.crm.api.send_mail.UserAddress","name":"reply_to","type":"com.zoho.crm.api.send_mail.UserAddress"},"inventory_details":{"structure_name":"com.zoho.crm.api.send_mail.InventoryDetails","name":"inventory_details","type":"com.zoho.crm.api.send_mail.InventoryDetails"},"from":{"structure_name":"com.zoho.crm.api.send_mail.UserAddress","name":"from","type":"com.zoho.crm.api.send_mail.UserAddress","required":true},"to":{"structure_name":"com.zoho.crm.api.send_mail.UserAddress","name":"to","type":"List","required":true},"id":{"name":"id","type":"Long","primary":true},"email":{"name":"email","type":"Integer"}},"com.zoho.crm.api.custom_views.CustomView":{"display_value":{"name":"display_value","type":"String"},"access_type":{"name":"access_type","type":"String"},"criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"system_name":{"name":"system_name","type":"String"},"sort_by":{"name":"sort_by","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"shared_to":{"structure_name":"com.zoho.crm.api.custom_views.SharedTo","name":"shared_to","type":"List"},"default":{"name":"default","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"name":{"name":"name","type":"String"},"system_defined":{"name":"system_defined","type":"Boolean"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"category":{"name":"category","type":"String"},"fields":{"structure_name":"com.zoho.crm.api.fields.Field","name":"fields","type":"List"},"last_accessed_time":{"name":"last_accessed_time","type":"DateTime"},"sort_order":{"name":"sort_order","type":"String"},"favorite":{"name":"favorite","type":"Integer"}},"com.zoho.crm.api.tags.CountHandler":{"classes":["com.zoho.crm.api.tags.APIException","com.zoho.crm.api.tags.CountWrapper"],"interface":true},"com.zoho.crm.api.variables.Variable":{"api_name":{"required_in_update":false,"name":"api_name","type":"String","primary":true},"name":{"name":"name","type":"String","required":true},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true},"type":{"name":"type","type":"String","required":true},"variable_group":{"structure_name":"com.zoho.crm.api.variable_groups.VariableGroup","name":"variable_group","type":"com.zoho.crm.api.variable_groups.VariableGroup","skip_mandatory":true,"required":true},"value":{"name":"value","type":"Object"}},"com.zoho.crm.api.fields.Crypt":{"mode":{"name":"mode","type":"String"},"column":{"name":"column","type":"String"},"encfldids":{"name":"encFldIds","type":"List"},"notify":{"name":"notify","type":"String"},"table":{"name":"table","type":"String"},"status":{"name":"status","type":"Integer"}},"com.zoho.crm.api.currencies.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["The multi-currency feature is enabled and given currency is created as the base currency.","The currency created successfully.","The currency updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.variable_groups.APIException":{"code":{"values":["INTERNAL_ERROR","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.fields.HistoryTracking":{"module_1":{"structure_name":"com.zoho.crm.api.fields.Module","name":"module","type":"com.zoho.crm.api.fields.Module"},"duration_configured_field":{"structure_name":"com.zoho.crm.api.fields.Field","name":"duration_configured_field","type":"com.zoho.crm.api.fields.Field"}},"com.zoho.crm.api.contact_roles.DeleteContactRolesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.modules.ActionResponse":{"classes":["com.zoho.crm.api.modules.APIException","com.zoho.crm.api.modules.SuccessResponse"],"interface":true},"com.zoho.crm.api.record.ResponseHandler":{"classes":["com.zoho.crm.api.record.ResponseWrapper","com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.currencies.APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","ALREADY_ENABLED","FEATURE_NOT_ENABLED","NOT_ALLOWED","ACTIVE_STATE_LIMIT_EXCEEDED","INTERNAL_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","CURRENCIES_NOT_ENABLED","FEATURE_NOT_SUPPORTED","No Content"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one.","The http request method type is not a valid one","The module name given seems to be invalid","The multi-currency is already enabled","Currency name is invalid.","ISO code is invalid.","Currency symbol is invalid.","The multi-currency feature is not available except the Enterprise and higher editions.","Required field not found.","unable to process your request. please verify whether you have entered proper method name"," parameter and parameter values.","Currency symbol is invalid.","Multi currency is not enabled","No Content","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.pipeline.BodyWrapper":{"pipeline":{"structure_name":"com.zoho.crm.api.pipeline.Pipeline","name":"pipeline","type":"List"}},"com.zoho.crm.api.record.MassUpdate":{"updated_count":{"name":"Updated_Count","type":"Integer"},"total_count":{"name":"Total_Count","type":"Integer"},"not_updated_count":{"name":"Not_Updated_Count","type":"Integer"},"failed_count":{"name":"Failed_Count","type":"Integer"},"status":{"values":["COMPLETED","SCHEDULED","RUNNING","FAILED"],"name":"Status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.related_records.GetRelatedRecordsHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.fields.PickListValue":{"display_value":{"name":"display_value","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"expected_data_type":{"name":"expected_data_type","type":"String"},"maps":{"structure_name":"com.zoho.crm.api.fields.Maps","name":"maps","type":"List"},"sys_ref_name":{"name":"sys_ref_name","type":"String"},"actual_value":{"name":"actual_value","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.currencies.ActionWrapper":{"currencies":{"structure_name":"com.zoho.crm.api.currencies.ActionResponse","name":"currencies","type":"List"}},"com.zoho.crm.api.profiles.PermissionDetail":{"display_label":{"name":"display_label","type":"String"},"module_1":{"name":"module","type":"String"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"enabled":{"name":"enabled","type":"Boolean"}},"com.zoho.crm.api.users.Territory":{"manager":{"name":"manager","type":"Boolean"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.variables.APIException":{"code":{"values":["UNABLE_TO_PARSE_DATA_TYPE","REQUIRED_PARAM_MISSING","DUPLICATE_DATA","INVALID_DATA","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INTERNAL_ERROR","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param","type":"String"},{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["either the request body or parameters is in wrong format","One of the expected parameter is missing","duplicate data","variable not deleted","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notes.GetNotesParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.fields.Field":{"webhook":{"name":"webhook","type":"Boolean"},"criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"field_label":{"name":"field_label","type":"String"},"tooltip":{"structure_name":"com.zoho.crm.api.fields.ToolTip","name":"tooltip","type":"com.zoho.crm.api.fields.ToolTip"},"type":{"name":"type","type":"String"},"layouts":{"structure_name":"com.zoho.crm.api.layouts.Layout","name":"layouts","type":"com.zoho.crm.api.layouts.Layout"},"field_read_only":{"name":"field_read_only","type":"Boolean"},"display_label":{"name":"display_label","type":"String"},"read_only":{"name":"read_only","type":"Boolean"},"association_details":{"structure_name":"com.zoho.crm.api.fields.AssociationDetails","name":"association_details","type":"com.zoho.crm.api.fields.AssociationDetails"},"businesscard_supported":{"name":"businesscard_supported","type":"Boolean"},"multi_module_lookup":{"structure_name":"com.zoho.crm.api.fields.MultiModuleLookup","name":"multi_module_lookup","type":"com.zoho.crm.api.fields.MultiModuleLookup"},"id":{"name":"id","type":"Long","read-only":true,"primary":true},"filterable":{"name":"filterable","type":"Boolean"},"visible":{"name":"visible","type":"Boolean"},"related_details":{"structure_name":"com.zoho.crm.api.fields.RelatedDetails","name":"related_details","type":"com.zoho.crm.api.fields.RelatedDetails"},"profiles":{"lookup":true,"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"},"view_type":{"structure_name":"com.zoho.crm.api.fields.ViewType","name":"view_type","type":"com.zoho.crm.api.fields.ViewType"},"personality_name":{"name":"personality_name","type":"String"},"subform":{"structure_name":"com.zoho.crm.api.fields.Module","name":"subform","type":"com.zoho.crm.api.fields.Module"},"external":{"structure_name":"com.zoho.crm.api.fields.External","name":"external","type":"com.zoho.crm.api.fields.External"},"api_name":{"name":"api_name","type":"String"},"unique":{"structure_name":"com.zoho.crm.api.fields.Unique","name":"unique","type":"com.zoho.crm.api.fields.Unique"},"pick_list_values":{"structure_name":"com.zoho.crm.api.fields.PickListValue","name":"pick_list_values","type":"List"},"system_mandatory":{"name":"system_mandatory","type":"Boolean"},"private":{"structure_name":"com.zoho.crm.api.fields.Private","name":"private","type":"com.zoho.crm.api.fields.Private"},"json_type":{"name":"json_type","type":"String"},"crypt":{"structure_name":"com.zoho.crm.api.fields.Crypt","name":"crypt","type":"com.zoho.crm.api.fields.Crypt"},"created_source":{"name":"created_source","type":"String"},"mandatory":{"name":"mandatory","type":"Boolean"},"content":{"name":"content","type":"String"},"display_type":{"values":[-1,0,1,2,3,4,5],"name":"display_type","type":"com.zoho.crm.api.util.Choice"},"ui_type":{"name":"ui_type","type":"Integer"},"validation_rule":{"name":"validation_rule","type":"Map"},"quick_sequence_number":{"name":"quick_sequence_number","type":"Integer"},"currency":{"structure_name":"com.zoho.crm.api.fields.Currency","name":"currency","type":"com.zoho.crm.api.fields.Currency"},"multiuserlookup":{"structure_name":"com.zoho.crm.api.fields.MultiUserLookup","name":"multiuserlookup","type":"com.zoho.crm.api.fields.MultiUserLookup"},"custom_field":{"name":"custom_field","type":"Boolean"},"lookup":{"structure_name":"com.zoho.crm.api.fields.Module","name":"lookup","type":"com.zoho.crm.api.fields.Module"},"convert_mapping":{"name":"convert_mapping","type":"Map"},"column_name":{"name":"column_name","type":"String"},"length":{"name":"length","type":"Integer"},"pick_list_values_sorted_lexically":{"name":"pick_list_values_sorted_lexically","type":"Boolean"},"default_value":{"name":"default_value","type":"String"},"sortable":{"name":"sortable","type":"Boolean"},"transition_sequence":{"name":"transition_sequence","type":"Integer"},"message":{"name":"message","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"history_tracking":{"structure_name":"com.zoho.crm.api.fields.HistoryTracking","name":"history_tracking","type":"com.zoho.crm.api.fields.HistoryTracking"},"data_type":{"name":"data_type","type":"String","read-only":true},"formula":{"structure_name":"com.zoho.crm.api.fields.Formula","name":"formula","type":"com.zoho.crm.api.fields.Formula"},"decimal_place":{"name":"decimal_place","type":"Integer"},"mass_update":{"name":"mass_update","type":"Boolean"},"blueprint_supported":{"name":"blueprint_supported","type":"Boolean"},"multiselectlookup":{"structure_name":"com.zoho.crm.api.fields.MultiSelectLookup","name":"multiselectlookup","type":"com.zoho.crm.api.fields.MultiSelectLookup"},"auto_number":{"structure_name":"com.zoho.crm.api.fields.AutoNumber","name":"auto_number","type":"com.zoho.crm.api.fields.AutoNumber"}},"com.zoho.crm.api.contact_roles.ResponseHandler":{"classes":["com.zoho.crm.api.contact_roles.ResponseWrapper","com.zoho.crm.api.contact_roles.APIException"],"interface":true},"com.zoho.crm.api.custom_views.SharedTo":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"subordinates":{"name":"subordinates","type":"Boolean"}},"com.zoho.crm.api.email_templates.Attachment":{"size":{"name":"size","type":"Long"},"file_name":{"name":"file_name","type":"String"},"file_id":{"name":"file_id","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.tags.GetRecordCountForTagParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.layouts.Section":{"display_label":{"name":"display_label","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"issubformsection":{"name":"isSubformSection","type":"Boolean"},"tab_traversal":{"name":"tab_traversal","type":"Integer"},"api_name":{"name":"api_name","type":"String"},"column_count":{"name":"column_count","type":"Integer"},"name":{"name":"name","type":"String"},"generated_type":{"name":"generated_type","type":"String"},"fields":{"structure_name":"com.zoho.crm.api.fields.Field","name":"fields","type":"List"},"type":{"name":"type","type":"String"},"properties":{"structure_name":"com.zoho.crm.api.layouts.Properties","name":"properties","type":"com.zoho.crm.api.layouts.Properties"}},"com.zoho.crm.api.send_mail.BodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.send_mail.Mail","name":"data","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.wizards.ResponseHandler":{"classes":["com.zoho.crm.api.wizards.ResponseWrapper","com.zoho.crm.api.wizards.APIException"],"interface":true},"com.zoho.crm.api.contact_roles.ActionHandler":{"classes":["com.zoho.crm.api.contact_roles.APIException","com.zoho.crm.api.contact_roles.ActionWrapper"],"interface":true},"com.zoho.crm.api.blue_print.Escalation":{"days":{"name":"days","type":"Integer"},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.wizards.GetWizardbyIDParam":{"layout_id":{"name":"layout_id","type":"String","required":true}},"com.zoho.crm.api.record.FileDetails":{"extn":{"name":"extn","type":"String"},"file_name":{"name":"file_Name","type":"String"},"link_docs":{"name":"link_Docs","type":"Integer"},"delete_url":{"name":"delete_Url","type":"String"},"entity_id":{"name":"entity_Id","type":"String"},"delete":{"name":"_delete","type":"String"},"file_size":{"name":"file_Size","type":"String"},"mode":{"name":"mode","type":"String"},"preview_url":{"name":"preview_Url","type":"String"},"file_id":{"name":"file_Id","type":"String","required":true},"is_preview_available":{"name":"is_Preview_Available","type":"Boolean"},"download_url":{"name":"download_Url","type":"String"},"attachment_id":{"name":"attachment_Id","type":"String"},"creator_id":{"name":"creator_Id","type":"String"},"original_size_byte":{"name":"original_Size_Byte","type":"String"}},"com.zoho.crm.api.files.APIException":{"code":{"values":["VIRUS_DETECTED","failure_in_attachment_handling","INTERNAL_ERROR","INVALID_TOKEN","INVALID_DATA","MANDATORY_NOT_FOUND","NO_PERMISSION","INVALID_MODULE","NOT_SUPPORTED","PATTERN_NOT_MATCHED","OAUTH_SCOPE_MISMATCH","DUPLICATE_DATA","INVALID_QUERY","MAPPING_MISMATCH","ID_ALREADY_CONVERTED","FILE_SIZE_MORE_THAN_ALLOWED_SIZE","RECORD_IN_BLUEPRINT","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","REQUIRED_PARAM_MISSING"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Unable to process your request. Virus has been detected.","Problem in uploading attachment. kindly upload the file properly","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","invalid data","permission denied","Internal server error occurred.","duplicate data","required field not found","record not deleted","record not deletable","Authentication failed","One of the expected parameter is missing","mandatory param missing","unable to process your request. please verify whether you have entered proper method name"," parameter and parameter values."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.layouts.ResponseHandler":{"classes":["com.zoho.crm.api.layouts.ResponseWrapper","com.zoho.crm.api.layouts.APIException"],"interface":true},"com.zoho.crm.api.notification.BodyWrapper":{"watch":{"structure_name":"com.zoho.crm.api.notification.Notification","name":"watch","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.blue_print.ActionResponse":{"classes":["com.zoho.crm.api.blue_print.SuccessResponse","com.zoho.crm.api.blue_print.APIException"],"interface":true},"com.zoho.crm.api.taxes.BodyWrapper":{"taxes":{"structure_name":"com.zoho.crm.api.taxes.Tax","name":"taxes","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.notes.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.notes.Note","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.notes.Info","name":"info","type":"com.zoho.crm.api.notes.Info"}},"com.zoho.crm.api.taxes.ActionWrapper":{"taxes":{"structure_name":"com.zoho.crm.api.taxes.ActionResponse","name":"taxes","type":"List"}},"com.zoho.crm.api.inventory_templates.ResponseWrapper":{"inventory_templates":{"structure_name":"com.zoho.crm.api.inventory_templates.InventoryTemplate","name":"inventory_templates","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.related_lists.GetRelatedListParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.variables.BodyWrapper":{"variables":{"structure_name":"com.zoho.crm.api.variables.Variable","name":"variables","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.inventory_templates.APIException":{"code":{"values":["FEATURE_NOT_SUPPORTED","INVALID_MODULE","NO_PERMISSION","PATTERN_NOT_MATCHED","INTERNAL_ERROR","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"param_name","type":"String"},{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Please check whether the input values are correct","the module name given seems to be invalid","feature not available in this edition","permission denied","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.wizards.Wizard":{"created_time":{"name":"created_time","type":"DateTime"},"modified_time":{"name":"modified_time","type":"DateTime"},"module_1":{"structure_name":"com.zoho.crm.api.modules.Module","name":"module","type":"com.zoho.crm.api.modules.Module"},"parent_wizard":{"structure_name":"com.zoho.crm.api.wizards.Wizard","name":"parent_wizard","type":"com.zoho.crm.api.wizards.Wizard"},"draft":{"name":"draft","type":"Boolean"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"profiles":{"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"},"active":{"name":"active","type":"Boolean"},"containers":{"structure_name":"com.zoho.crm.api.wizards.Container","name":"containers","type":"List"},"id":{"name":"id","type":"Long","primary":true},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"}},"com.zoho.crm.api.related_records.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["relation added","relation removed"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.send_mail.ActionHandler":{"classes":["com.zoho.crm.api.send_mail.APIException","com.zoho.crm.api.send_mail.ActionWrapper"],"interface":true},"com.zoho.crm.api.record.Record":{"created_time":{"name":"Created_Time","type":"DateTime"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"tag":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"Tag","type":"List","skip_mandatory":true},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"}},"com.zoho.crm.api.variable_groups.ResponseHandler":{"classes":["com.zoho.crm.api.variable_groups.ResponseWrapper","com.zoho.crm.api.variable_groups.APIException"],"interface":true},"com.zoho.crm.api.bulk_write.ResponseWrapper":{"classes":["com.zoho.crm.api.bulk_write.APIException","com.zoho.crm.api.bulk_write.BulkWriteResponse"],"interface":true},"com.zoho.crm.api.users.APIException":{"code":{"values":["ID_ALREADY_DELETED","CANNOT_UPDATE_DELETED_USER","AUTHORIZATION_FAILED","PATTERN_NOT_MATCHED","INVALID_REQUEST","LICENSE_LIMIT_EXCEEDED","DUPLICATE_DATA","INVALID_DATA","UNAPPROVABLE","MANDATORY_NOT_FOUND","INTERNAL_ERROR","EMAIL_UPDATE_NOT_ALLOWED","ID_ALREADY_DEACTIVATED","ID_ALREADY_ACTIVE","FEATURE_PERMISSION","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred.","Cannot add user under CRM Plus account. Kindly use CRMPlus URL to add user","Request exceeds your license limit. Need to upgrade in order to add","Failed to add user since same email id is already present","Email Id should not contain @skydesk.jp. Please choose a different email id","Invalid Email Id. Please choose a different email id","Cannot add user for CRMPlus account from CRM. Kindly add user through CRMPlus","Company Name is required","Error occurred in resending the invitation of CRMPLUS user in CRM account","Cannot update the time_zone of another User","Either trial has expired or user does not have sufficient privilege to perform this action","Error occurred while updating CRMPlus User in CRM Account","invalid_data","Deleted user cannot be updated","Re-invite is not allowed for a confirmed user","Cannot update email of a confirmed CRM User","User with same email id is already in CRM Plus","User is already deactivated","Primary Contact cannot be deactivated","User is already active","Share among Subordinates Feature is not available","Profile and Role cannot be Updated by the user.","the_id_given_seems_to_be_invalid","Primary contact cannot be deleted","User is already deleted","User does not have sufficient privilege to delete users"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.attachments.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.attachments.Attachment","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.notification.ActionResponse":{"classes":["com.zoho.crm.api.notification.SuccessResponse","com.zoho.crm.api.notification.APIException"],"interface":true},"com.zoho.crm.api.profiles.GetProfileHeader":{"if_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.users.ResponseWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.User","name":"users","type":"List"},"info":{"structure_name":"com.zoho.crm.api.users.Info","name":"info","type":"com.zoho.crm.api.users.Info"}},"com.zoho.crm.api.share_records.ActionResponse":{"classes":["com.zoho.crm.api.share_records.SuccessResponse","com.zoho.crm.api.share_records.APIException"],"interface":true},"com.zoho.crm.api.bulk_read.RequestWrapper":{"file_type":{"values":["ics","csv"],"name":"file_type","type":"com.zoho.crm.api.util.Choice"},"query":{"structure_name":"com.zoho.crm.api.bulk_read.Query","name":"query","type":"com.zoho.crm.api.bulk_read.Query","required":true},"callback":{"structure_name":"com.zoho.crm.api.bulk_read.CallBack","name":"callback","type":"com.zoho.crm.api.bulk_read.CallBack"}},"com.zoho.crm.api.org.ActionResponse":{"classes":["com.zoho.crm.api.org.SuccessResponse","com.zoho.crm.api.org.APIException"],"interface":true},"com.zoho.crm.api.related_records.ActionHandler":{"classes":["com.zoho.crm.api.related_records.APIException","com.zoho.crm.api.related_records.ActionWrapper"],"interface":true},"com.zoho.crm.api.send_mail.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"message_id","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Your mail has been sent successfully.","Your mail has been scheduled successfully."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.pipeline.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["Pipeline created","Pipeline updated","transfer pipeline scheduled successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.ConvertActionResponse":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.SuccessfulConvert"],"interface":true},"com.zoho.crm.api.record.MassUpdateResponse":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.MassUpdate"],"interface":true},"com.zoho.crm.api.field_attachments.BodyWrapper":{"file":{"name":"file","max-length":10,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.related_records.ActionResponse":{"classes":["com.zoho.crm.api.related_records.APIException","com.zoho.crm.api.related_records.SuccessResponse"],"interface":true},"com.zoho.crm.api.share_records.ActionWrapper":{"share":{"structure_name":"com.zoho.crm.api.share_records.ActionResponse","name":"share","type":"List"}},"com.zoho.crm.api.notification.ResponseWrapper":{"watch":{"structure_name":"com.zoho.crm.api.notification.Notification","name":"watch","type":"List"},"info":{"structure_name":"com.zoho.crm.api.notification.Info","name":"info","type":"com.zoho.crm.api.notification.Info"}},"com.zoho.crm.api.modules.ResponseHandler":{"classes":["com.zoho.crm.api.modules.APIException","com.zoho.crm.api.modules.ResponseWrapper"],"interface":true},"com.zoho.crm.api.org.Org":{"country":{"name":"country","type":"String"},"hierarchy_preferences":{"structure_name":"com.zoho.crm.api.org.HierarchyPreference","name":"hierarchy_preferences","type":"com.zoho.crm.api.org.HierarchyPreference"},"photo_id":{"name":"photo_id","type":"String"},"city":{"name":"city","type":"String"},"description":{"name":"description","type":"String"},"mc_status":{"name":"mc_status","type":"Boolean"},"gapps_enabled":{"name":"gapps_enabled","type":"Boolean"},"domain_name":{"name":"domain_name","type":"String"},"translation_enabled":{"name":"translation_enabled","type":"Boolean"},"street":{"name":"street","type":"String"},"currency":{"name":"currency","type":"String"},"id":{"name":"id","type":"Long","primary":true},"state":{"name":"state","type":"String"},"fax":{"name":"fax","type":"String"},"employee_count":{"name":"employee_count","type":"String"},"zip":{"name":"zip","type":"String"},"website":{"name":"website","type":"String"},"currency_symbol":{"name":"currency_symbol","type":"String"},"mobile":{"name":"mobile","type":"String"},"currency_locale":{"name":"currency_locale","type":"String"},"primary_zuid":{"name":"primary_zuid","type":"String"},"zia_portal_id":{"name":"zia_portal_id","type":"String"},"time_zone":{"name":"time_zone","type":"String"},"zgid":{"name":"zgid","type":"String"},"country_code":{"name":"country_code","type":"String"},"license_details":{"structure_name":"com.zoho.crm.api.org.LicenseDetails","name":"license_details","type":"com.zoho.crm.api.org.LicenseDetails"},"phone":{"name":"phone","type":"String"},"company_name":{"name":"company_name","type":"String"},"privacy_settings":{"name":"privacy_settings","type":"Boolean"},"primary_email":{"name":"primary_email","type":"String"},"hipaa_compliance_enabled":{"name":"hipaa_compliance_enabled","type":"Boolean"},"iso_code":{"name":"iso_code","type":"String"},"alias_1":{"name":"alias","type":"String"}},"com.zoho.crm.api.org.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.contact_roles.BodyWrapper":{"contact_roles":{"structure_name":"com.zoho.crm.api.contact_roles.ContactRole","name":"contact_roles","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.taxes.DeleteTaxesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.record.RecurringActivity":{"rrule":{"name":"RRULE","type":"String","required":true}},"com.zoho.crm.api.wizards.Screen":{"display_label":{"name":"display_label","type":"String"},"id":{"name":"id","type":"Long"},"segments":{"structure_name":"com.zoho.crm.api.wizards.Segment","name":"segments","type":"List"}},"com.zoho.crm.api.files.ActionResponse":{"classes":["com.zoho.crm.api.files.SuccessResponse","com.zoho.crm.api.files.APIException"],"interface":true},"com.zoho.crm.api.modules.Module":{"global_search_supported":{"name":"global_search_supported","type":"Boolean"},"kanban_view":{"name":"kanban_view","type":"Boolean"},"deletable":{"name":"deletable","type":"Boolean"},"description":{"name":"description","type":"String"},"creatable":{"name":"creatable","type":"Boolean"},"filter_status":{"name":"filter_status","type":"Boolean"},"inventory_template_supported":{"name":"inventory_template_supported","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"plural_label":{"name":"plural_label","type":"String"},"presence_sub_menu":{"name":"presence_sub_menu","type":"Boolean"},"triggers_supported":{"name":"triggers_supported","type":"Boolean"},"id":{"name":"id","type":"Long","primary":true},"related_list_properties":{"structure_name":"com.zoho.crm.api.modules.RelatedListProperties","name":"related_list_properties","type":"com.zoho.crm.api.modules.RelatedListProperties"},"isblueprintsupported":{"name":"isBlueprintSupported","type":"Boolean"},"per_page":{"name":"per_page","type":"Integer"},"visible":{"name":"visible","type":"Boolean"},"visibility":{"name":"visibility","type":"Integer"},"convertable":{"name":"convertable","type":"Boolean"},"editable":{"name":"editable","type":"Boolean"},"profiles":{"lookup":true,"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"},"filter_supported":{"name":"filter_supported","type":"Boolean"},"display_field":{"name":"display_field","type":"String"},"search_layout_fields":{"name":"search_layout_fields","type":"List"},"kanban_view_supported":{"name":"kanban_view_supported","type":"Boolean"},"show_as_tab":{"name":"show_as_tab","type":"Boolean"},"web_link":{"name":"web_link","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"singular_label":{"name":"singular_label","type":"String"},"viewable":{"name":"viewable","type":"Boolean"},"api_supported":{"name":"api_supported","type":"Boolean"},"api_name":{"name":"api_name","type":"String","primary":true},"quick_create":{"name":"quick_create","type":"Boolean"},"name":{"name":"name","type":"String"},"on_demand_properties":{"name":"$on_demand_properties","type":"List"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"generated_type":{"values":["default","web","custom","linking","subform"],"name":"generated_type","type":"com.zoho.crm.api.util.Choice"},"feeds_required":{"name":"feeds_required","type":"Boolean"},"scoring_supported":{"name":"scoring_supported","type":"Boolean"},"webform_supported":{"name":"webform_supported","type":"Boolean"},"arguments":{"structure_name":"com.zoho.crm.api.modules.Argument","name":"arguments","type":"List"},"emailtemplate_support":{"name":"emailTemplate_support","type":"Boolean"},"module_name":{"name":"module_name","type":"String"},"business_card_field_limit":{"name":"business_card_field_limit","type":"Integer"},"properties":{"name":"$properties","type":"List"},"custom_view":{"lookup":true,"structure_name":"com.zoho.crm.api.custom_views.CustomView","name":"custom_view","type":"com.zoho.crm.api.custom_views.CustomView"},"parent_module":{"lookup":true,"structure_name":"com.zoho.crm.api.modules.Module","name":"parent_module","type":"com.zoho.crm.api.modules.Module"},"territory":{"lookup":true,"structure_name":"com.zoho.crm.api.modules.Territory","name":"territory","type":"com.zoho.crm.api.modules.Territory"}},"com.zoho.crm.api.wizards.Node":{"pos_y":{"name":"pos_y","type":"Integer"},"pos_x":{"name":"pos_x","type":"Integer"},"start_node":{"name":"start_node","type":"Boolean"},"screen":{"structure_name":"com.zoho.crm.api.wizards.Screen","name":"screen","type":"com.zoho.crm.api.wizards.Screen"}},"com.zoho.crm.api.blue_print.Field":{"webhook":{"name":"webhook","type":"Boolean"},"criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"field_label":{"name":"field_label","type":"String"},"tooltip":{"structure_name":"com.zoho.crm.api.fields.ToolTip","name":"tooltip","type":"com.zoho.crm.api.fields.ToolTip"},"type":{"name":"_type","type":"String"},"layouts":{"structure_name":"com.zoho.crm.api.layouts.Layout","name":"layouts","type":"com.zoho.crm.api.layouts.Layout"},"field_read_only":{"name":"field_read_only","type":"Boolean"},"display_label":{"name":"display_label","type":"String"},"read_only":{"name":"read_only","type":"Boolean"},"association_details":{"structure_name":"com.zoho.crm.api.fields.AssociationDetails","name":"association_details","type":"com.zoho.crm.api.fields.AssociationDetails"},"businesscard_supported":{"name":"businesscard_supported","type":"Boolean"},"multi_module_lookup":{"structure_name":"com.zoho.crm.api.fields.MultiModuleLookup","name":"multi_module_lookup","type":"com.zoho.crm.api.fields.MultiModuleLookup"},"id":{"name":"id","type":"Long","read-only":true},"filterable":{"name":"filterable","type":"Boolean"},"visible":{"name":"visible","type":"Boolean"},"related_details":{"structure_name":"com.zoho.crm.api.fields.RelatedDetails","name":"related_details","type":"com.zoho.crm.api.fields.RelatedDetails"},"profiles":{"lookup":true,"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"},"view_type":{"structure_name":"com.zoho.crm.api.fields.ViewType","name":"view_type","type":"com.zoho.crm.api.fields.ViewType"},"personality_name":{"name":"personality_name","type":"String"},"subform":{"structure_name":"com.zoho.crm.api.fields.Module","name":"subform","type":"com.zoho.crm.api.fields.Module"},"external":{"structure_name":"com.zoho.crm.api.fields.External","name":"external","type":"com.zoho.crm.api.fields.External"},"api_name":{"name":"api_name","type":"String"},"unique":{"structure_name":"com.zoho.crm.api.fields.Unique","name":"unique","type":"com.zoho.crm.api.fields.Unique"},"pick_list_values":{"structure_name":"com.zoho.crm.api.fields.PickListValue","name":"pick_list_values","type":"List"},"system_mandatory":{"name":"system_mandatory","type":"Boolean"},"private":{"structure_name":"com.zoho.crm.api.fields.Private","name":"private","type":"com.zoho.crm.api.fields.Private"},"json_type":{"name":"json_type","type":"String"},"crypt":{"structure_name":"com.zoho.crm.api.fields.Crypt","name":"crypt","type":"com.zoho.crm.api.fields.Crypt"},"created_source":{"name":"created_source","type":"String"},"mandatory":{"name":"mandatory","type":"Boolean"},"content":{"name":"content","type":"String"},"display_type":{"values":[-1,2],"name":"display_type","type":"com.zoho.crm.api.util.Choice"},"ui_type":{"name":"ui_type","type":"Integer"},"validation_rule":{"name":"validation_rule","type":"Map"},"quick_sequence_number":{"name":"quick_sequence_number","type":"Integer"},"currency":{"structure_name":"com.zoho.crm.api.fields.Currency","name":"currency","type":"com.zoho.crm.api.fields.Currency"},"multiuserlookup":{"structure_name":"com.zoho.crm.api.fields.MultiUserLookup","name":"multiuserlookup","type":"com.zoho.crm.api.fields.MultiUserLookup"},"custom_field":{"name":"custom_field","type":"Boolean"},"lookup":{"structure_name":"com.zoho.crm.api.fields.Module","name":"lookup","type":"com.zoho.crm.api.fields.Module"},"convert_mapping":{"name":"convert_mapping","type":"Map"},"column_name":{"name":"column_name","type":"String"},"length":{"name":"length","type":"Integer"},"pick_list_values_sorted_lexically":{"name":"pick_list_values_sorted_lexically","type":"Boolean"},"default_value":{"name":"default_value","type":"String"},"sortable":{"name":"sortable","type":"Boolean"},"transition_sequence":{"name":"transition_sequence","type":"Integer"},"message":{"name":"message","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"history_tracking":{"structure_name":"com.zoho.crm.api.fields.HistoryTracking","name":"history_tracking","type":"com.zoho.crm.api.fields.HistoryTracking"},"data_type":{"name":"data_type","type":"String","read-only":true},"formula":{"structure_name":"com.zoho.crm.api.fields.Formula","name":"formula","type":"com.zoho.crm.api.fields.Formula"},"decimal_place":{"name":"decimal_place","type":"Integer"},"mass_update":{"name":"mass_update","type":"Boolean"},"blueprint_supported":{"name":"blueprint_supported","type":"Boolean"},"multiselectlookup":{"structure_name":"com.zoho.crm.api.fields.MultiSelectLookup","name":"multiselectlookup","type":"com.zoho.crm.api.fields.MultiSelectLookup"},"auto_number":{"structure_name":"com.zoho.crm.api.fields.AutoNumber","name":"auto_number","type":"com.zoho.crm.api.fields.AutoNumber"}},"com.zoho.crm.api.record.GetMassUpdateStatusParam":{"job_id":{"name":"job_id","type":"String"}},"com.zoho.crm.api.users.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.users.BodyWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.User","name":"users","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.attachments.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.attachments.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.send_mail.Template":{"classes":["com.zoho.crm.api.inventory_templates.InventoryTemplate","com.zoho.crm.api.email_templates.EmailTemplate"],"interface":true},"com.zoho.crm.api.record.Territory":{"name":{"name":"Name","type":"String"},"assigned":{"name":"$assigned","type":"String"},"id":{"required_in_update":true,"name":"id","type":"Long"},"assigned_by":{"structure_name":"com.zoho.crm.api.users.User","name":"$assigned_by","type":"com.zoho.crm.api.users.User"},"assigned_time":{"name":"$assigned_time","type":"DateTime"}},"com.zoho.crm.api.tags.RecordActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.tags.RecordActionResponse","name":"data","type":"List"},"wf_scheduler":{"name":"wf_scheduler","type":"Boolean"},"success_count":{"name":"success_count","type":"String"},"locked_count":{"name":"locked_count","type":"Integer"}},"com.zoho.crm.api.layouts.ResponseWrapper":{"layouts":{"structure_name":"com.zoho.crm.api.layouts.Layout","name":"layouts","type":"List"}},"com.zoho.crm.api.bulk_read.CallBack":{"method":{"values":["post"],"name":"method","type":"com.zoho.crm.api.util.Choice","required":true},"url":{"name":"url","type":"String","required":true}},"com.zoho.crm.api.fields.LookupField":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.bulk_read.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.bulk_read.ActionResponse","name":"data","type":"List"},"info":{"name":"info","type":"Map"}},"com.zoho.crm.api.modules.Argument":{"name":{"name":"name","type":"String"},"value":{"name":"value","type":"String"}},"com.zoho.crm.api.notes.GetNotesHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime","required":true}},"com.zoho.crm.api.custom_views.APIException":{"code":{"values":["NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","REQUIRED_PARAM_MISSING","INVALID_MODULE","INTERNAL_ERROR","INVALID_DATA"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"expected_data_type","type":"String"},{"name":"api_name","type":"String"},{"structure_name":"com.zoho.crm.api.custom_views.Range","name":"range","type":"com.zoho.crm.api.custom_views.Range"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","The given module is not supported in API","invalid data","Invalid ID","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.GetRecordsHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.notification.Notification":{"notify_on_related_action":{"name":"notify_on_related_action","type":"Boolean"},"deleteevents":{"name":"_delete_events","type":"Boolean"},"channel_expiry":{"name":"channel_expiry","type":"DateTime"},"resource_uri":{"name":"resource_uri","type":"String"},"resource_id":{"name":"resource_id","type":"String"},"notify_url":{"name":"notify_url","type":"String","required":true},"resource_name":{"name":"resource_name","type":"String"},"fields":{"name":"fields","type":"Map"},"channel_id":{"name":"channel_id","type":"Long","required":true,"primary":true},"events":{"required_in_update":true,"name":"events","type":"List","required":true},"token":{"name":"token","max-length":50,"type":"String","min-length":1}},"com.zoho.crm.api.bulk_write.FieldMapping":{"module_1":{"name":"module","type":"String"},"api_name":{"name":"api_name","type":"String","required":true},"format":{"name":"format","type":"String"},"find_by":{"name":"find_by","type":"String"},"index":{"name":"index","type":"Integer"},"default_value":{"name":"default_value","type":"Map"}},"com.zoho.crm.api.contact_roles.ActionWrapper":{"contact_roles":{"structure_name":"com.zoho.crm.api.contact_roles.ActionResponse","name":"contact_roles","type":"List"}},"com.zoho.crm.api.modules.BodyWrapper":{"modules":{"structure_name":"com.zoho.crm.api.modules.Module","name":"modules","max-length":1,"type":"List","min-length":1}},"com.zoho.crm.api.pipeline.TransferActionWrapper":{"transfer_pipeline":{"structure_name":"com.zoho.crm.api.pipeline.TransferActionResponse","name":"transfer_pipeline","type":"List"}},"com.zoho.crm.api.record.DeletedRecordsWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.DeletedRecord","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.record.Comment":{"commented_by":{"name":"commented_by","type":"String"},"commented_time":{"name":"commented_time","type":"DateTime"},"comment_content":{"name":"comment_content","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.Reminder":{"period":{"name":"period","type":"String","required":true},"unit":{"name":"unit","type":"String","required":true}},"com.zoho.crm.api.blue_print.ResponseWrapper":{"blueprint":{"structure_name":"com.zoho.crm.api.blue_print.BluePrint","name":"blueprint","type":"com.zoho.crm.api.blue_print.BluePrint"}},"com.zoho.crm.api.blue_print.ValidationError":{"api_name":{"name":"api_name","type":"String"},"index":{"name":"index","type":"Integer"},"parent_api_name":{"name":"parent_api_name","type":"String"},"message":{"name":"message","type":"String"},"info_message":{"name":"info_message","type":"String"}},"com.zoho.crm.api.variables.GetVariableForAPINameParam":{"group":{"name":"group","type":"String","required":true}},"com.zoho.crm.api.fields.ToolTip":{"name":{"name":"name","type":"String"},"value":{"name":"value","type":"String"}},"com.zoho.crm.api.tags.MergeWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.ConflictWrapper","name":"tags","max-length":1,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.record.MassUpdateResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.MassUpdateResponse","name":"data","type":"List"}},"com.zoho.crm.api.assignment_rules.DefaultUser":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"String"}},"com.zoho.crm.api.query.ResponseHandler":{"classes":["com.zoho.crm.api.query.ResponseWrapper","com.zoho.crm.api.query.APIException"],"interface":true},"com.zoho.crm.api.inventory_templates.ResponseHandler":{"classes":["com.zoho.crm.api.inventory_templates.ResponseWrapper","com.zoho.crm.api.inventory_templates.APIException"],"interface":true},"com.zoho.crm.api.modules.ResponseWrapper":{"modules":{"structure_name":"com.zoho.crm.api.modules.Module","name":"modules","type":"List"}},"com.zoho.crm.api.share_records.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["record will be shared successfully","Sharing Revoked"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.share_records.ActionHandler":{"classes":["com.zoho.crm.api.share_records.APIException","com.zoho.crm.api.share_records.ActionWrapper"],"interface":true},"com.zoho.crm.api.wizards.Container":{"layout":{"structure_name":"com.zoho.crm.api.layouts.Layout","name":"layout","type":"com.zoho.crm.api.layouts.Layout"},"chart_data":{"structure_name":"com.zoho.crm.api.wizards.ChartData","name":"chart_data","type":"com.zoho.crm.api.wizards.ChartData"},"screens":{"structure_name":"com.zoho.crm.api.wizards.Screen","name":"screens","type":"List"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.GetRecordParam":{"cvid":{"name":"cvid","type":"String"},"uid":{"name":"uid","type":"String"},"approved":{"name":"approved","type":"String"},"startDateTime":{"name":"startDateTime","type":"DateTime"},"include_child":{"name":"include_child","type":"String"},"converted":{"name":"converted","type":"String"},"fields":{"name":"fields","type":"String"},"endDateTime":{"name":"endDateTime","type":"DateTime"},"territory_id":{"name":"territory_id","type":"String"}},"com.zoho.crm.api.attachments.ActionResponse":{"classes":["com.zoho.crm.api.attachments.SuccessResponse","com.zoho.crm.api.attachments.APIException"],"interface":true},"com.zoho.crm.api.bulk_write.ActionResponse":{"classes":["com.zoho.crm.api.bulk_write.SuccessResponse","com.zoho.crm.api.bulk_write.APIException"],"interface":true},"com.zoho.crm.api.record.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.notes.ActionHandler":{"classes":["com.zoho.crm.api.notes.ActionWrapper","com.zoho.crm.api.notes.APIException"],"interface":true},"com.zoho.crm.api.related_lists.ResponseWrapper":{"related_lists":{"structure_name":"com.zoho.crm.api.related_lists.RelatedList","name":"related_lists","type":"List"}},"com.zoho.crm.api.bulk_write.CallBack":{"method":{"values":["post"],"name":"method","type":"com.zoho.crm.api.util.Choice","required":true},"url":{"name":"url","type":"String","required":true}},"com.zoho.crm.api.bulk_read.Query":{"cvid":{"name":"cvid","type":"String"},"module_1":{"structure_name":"com.zoho.crm.api.modules.Module","name":"module","type":"com.zoho.crm.api.modules.Module","required":true},"criteria":{"structure_name":"com.zoho.crm.api.bulk_read.Criteria","name":"criteria","type":"com.zoho.crm.api.bulk_read.Criteria"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"List"}},"com.zoho.crm.api.fields.ResponseHandler":{"classes":["com.zoho.crm.api.fields.APIException","com.zoho.crm.api.fields.ResponseWrapper"],"interface":true},"com.zoho.crm.api.org.HierarchyPreference":{"type":{"name":"type","type":"String"}},"com.zoho.crm.api.pipeline.TransferActionResponse":{"classes":["com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.SuccessResponse"],"interface":true},"com.zoho.crm.api.territories.APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","CURRENCIES_NOT_ENABLED","FEATURE_NOT_SUPPORTED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The id given seems to be invalid.","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.ResponseHandler":{"classes":["com.zoho.crm.api.users.ResponseWrapper","com.zoho.crm.api.users.APIException"],"interface":true},"com.zoho.crm.api.currencies.BaseCurrencyActionHandler":{"classes":["com.zoho.crm.api.currencies.APIException","com.zoho.crm.api.currencies.BaseCurrencyActionWrapper"],"interface":true},"com.zoho.crm.api.org.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["photo uploaded successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.Theme":{"normal_tab":{"lookup":true,"structure_name":"com.zoho.crm.api.users.TabTheme","name":"normal_tab","type":"com.zoho.crm.api.users.TabTheme"},"selected_tab":{"lookup":true,"structure_name":"com.zoho.crm.api.users.TabTheme","name":"selected_tab","type":"com.zoho.crm.api.users.TabTheme"},"new_background":{"name":"new_background","type":"String"},"background":{"name":"background","type":"String"},"screen":{"name":"screen","type":"String"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.record.ActionResponse":{"classes":["com.zoho.crm.api.record.SuccessResponse","com.zoho.crm.api.record.APIException"],"interface":true},"com.zoho.crm.api.record.ImageUpload":{"sequence_number":{"name":"Sequence_Number","type":"Integer"},"size":{"name":"Size","type":"Long"},"encrypted_id":{"name":"Encrypted_Id","type":"String"},"preview_id":{"name":"Preview_Id","type":"String"},"file_name":{"name":"File_Name","type":"String"},"file_id":{"name":"File_Id","type":"String"},"description":{"name":"Description","type":"String"},"state":{"name":"State","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.pipeline.Pipeline":{"display_value":{"name":"display_value","type":"String","required":true},"parent":{"structure_name":"com.zoho.crm.api.pipeline.Pipeline","name":"parent","type":"com.zoho.crm.api.pipeline.Pipeline"},"default":{"name":"default","type":"Boolean"},"maps":{"structure_name":"com.zoho.crm.api.pipeline.PickListValue","name":"maps","type":"List","required":true},"from":{"name":"from","type":"Long"},"actual_value":{"name":"actual_value","type":"String"},"to":{"name":"to","type":"Long"},"id":{"name":"id","type":"Long","primary":true},"child_available":{"name":"child_available","type":"Boolean"}},"com.zoho.crm.api.related_records.APIException":{"code":{"values":["NO_PERMISSION","CANNOT_BE_UPDATED","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"id","type":"Long"},{"name":"param_name","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid data","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.pipeline.TransferAndDeleteParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.layouts.GetLayoutsParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.notification.ActionWrapper":{"watch":{"structure_name":"com.zoho.crm.api.notification.ActionResponse","name":"watch","type":"List"}},"com.zoho.crm.api.modules.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","INVALID_MODULE","INVALID_DATA","LIMIT_EXCEEDED","DUPLICATE_DATA","NOT_ALLOWED","NO_PERMISSION"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"json_path","type":"String"},{"name":"limit","type":"Integer"},{"name":"maximum_length","type":"Integer"},{"name":"permissions","type":"List"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the given module is not supported in api","invalid data","Api name duplicate","Api name is not valid","System keyword not allowed in api name","Api name update not allowed","No permission to update API name","permission denied to access the module","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.DeleteRecordsParam":{"wf_trigger":{"name":"wf_trigger","type":"String"},"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.contact_roles.ContactRole":{"sequence_number":{"name":"sequence_number","type":"Integer"},"name":{"unique":true,"name":"name","type":"String","required":true},"id":{"name":"id","type":"Long","primary":true}},"com.zoho.crm.api.send_mail.ActionResponse":{"classes":["com.zoho.crm.api.send_mail.APIException","com.zoho.crm.api.send_mail.SuccessResponse"],"interface":true},"com.zoho.crm.api.record.DeletedRecord":{"deleted_by":{"structure_name":"com.zoho.crm.api.users.User","name":"deleted_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"display_name":{"name":"display_name","type":"String"},"type":{"name":"type","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"deleted_time":{"name":"deleted_time","type":"DateTime"}},"com.zoho.crm.api.taxes.ResponseHandler":{"classes":["com.zoho.crm.api.taxes.APIException","com.zoho.crm.api.taxes.ResponseWrapper"],"interface":true},"com.zoho.crm.api.users.GetUsersParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"type":{"name":"type","type":"String","required":true}},"com.zoho.crm.api.related_records.GetRelatedRecordsParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"}},"com.zoho.crm.api.related_records.ResponseHandler":{"classes":["com.zoho.crm.api.related_records.APIException","com.zoho.crm.api.related_records.ResponseWrapper","com.zoho.crm.api.related_records.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.assignment_rules.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","REQUIRED_PARAM_MISSING","","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid oneInternal server error occurred.","the id given seems to be invalid","One of the expected parameter is missing","You do not have the permission to read the assignment rules.","The request URL has syntactical errors."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.contact_roles.ResponseWrapper":{"contact_roles":{"structure_name":"com.zoho.crm.api.contact_roles.ContactRole","name":"contact_roles","type":"List"}},"com.zoho.crm.api.custom_views.GetCustomViewParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.attachments.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"Modified_Time","type":"DateTime"},{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},{"name":"Created_Time","type":"DateTime"},{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"}],"name":"details","type":"Map"},"message":{"values":["attachment uploaded successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notes.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"Modified_Time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},{"name":"Created_Time","type":"DateTime"},{"name":"id","type":"Long"},{"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"}],"name":"details","type":"Map"},"message":{"values":["record added","record updated","record deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.modules.GetModulesHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.record.ActionHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.ActionWrapper"],"interface":true},"com.zoho.crm.api.variables.ResponseHandler":{"classes":["com.zoho.crm.api.variables.ResponseWrapper","com.zoho.crm.api.variables.APIException"],"interface":true},"com.zoho.crm.api.bulk_read.ActionResponse":{"classes":["com.zoho.crm.api.bulk_read.SuccessResponse","com.zoho.crm.api.bulk_read.APIException"],"interface":true},"com.zoho.crm.api.attachments.DeleteAttachmentsParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.fields.GetFieldParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.bulk_read.JobDetail":{"result":{"structure_name":"com.zoho.crm.api.bulk_read.Result","name":"result","type":"com.zoho.crm.api.bulk_read.Result"},"created_time":{"name":"created_time","type":"DateTime"},"file_type":{"name":"file_type","type":"String"},"query":{"structure_name":"com.zoho.crm.api.bulk_read.Query","name":"query","type":"com.zoho.crm.api.bulk_read.Query"},"id":{"name":"id","type":"Long","primary":true},"state":{"values":["COMPLETED","IN PROGRESS","ADDED","FAILURE"],"name":"state","type":"com.zoho.crm.api.util.Choice"},"operation":{"name":"operation","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"}},"com.zoho.crm.api.profiles.DefaultView":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.pipeline.TransferActionHandler":{"classes":["com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.TransferActionWrapper"],"interface":true},"com.zoho.crm.api.roles.ResponseWrapper":{"roles":{"structure_name":"com.zoho.crm.api.roles.Role","name":"roles","type":"List"}},"com.zoho.crm.api.blue_print.NextTransition":{"name":{"name":"name","type":"String"},"criteria_matched":{"name":"criteria_matched","type":"Boolean"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.related_records.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.send_mail.UserAddress":{"default":{"name":"default","type":"Boolean"},"user_name":{"name":"user_name","type":"String"},"id":{"name":"id","type":"Long","primary":true},"type":{"name":"type","type":"String"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.record.Criteria":{"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com.zoho.crm.api.util.Choice"},"field":{"name":"field","type":"String"},"group_operator":{"values":["and","or"],"name":"group_operator","type":"com.zoho.crm.api.util.Choice"},"value":{"name":"value","type":"Object"},"group":{"lookup":true,"structure_name":"com.zoho.crm.api.record.Criteria","name":"group","type":"List"}},"com.zoho.crm.api.record.ConvertActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.ConvertActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.share_records.DeleteActionHandler":{"classes":["com.zoho.crm.api.share_records.APIException","com.zoho.crm.api.share_records.DeleteActionWrapper"],"interface":true},"com.zoho.crm.api.fields.MultiSelectLookup":{"display_label":{"name":"display_label","type":"String"},"linking_module":{"name":"linking_module","type":"String"},"lookup_apiname":{"name":"lookup_apiname","type":"String"},"api_name":{"name":"api_name","type":"String"},"connected_module":{"name":"connected_module","type":"String"},"connectedlookup_apiname":{"name":"connectedlookup_apiname","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.Participants":{"name":{"name":"name","type":"String"},"invited":{"name":"invited","type":"Boolean"},"type":{"name":"type","type":"String","required":true},"email":{"name":"Email","type":"String"},"participant":{"name":"participant","type":"String","required":true},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.tags.RemoveTagsFromMultipleRecordsParam":{"ids":{"name":"ids","type":"Long","required":true},"tag_names":{"name":"tag_names","type":"String","required":true}},"com.zoho.crm.api.record.SearchRecordsParam":{"per_page":{"name":"per_page","type":"Integer"},"approved":{"name":"approved","type":"String"},"phone":{"name":"phone","type":"String"},"converted":{"name":"converted","type":"String"},"criteria":{"name":"criteria","type":"String"},"page":{"name":"page","type":"Integer"},"word":{"name":"word","type":"String"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.variables.DeleteVariablesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.tags.ActionWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.ActionResponse","name":"tags","type":"List"}},"com.zoho.crm.api.assignment_rules.ResponseWrapper":{"assignment_rules":{"structure_name":"com.zoho.crm.api.assignment_rules.AssignmentRule","name":"assignment_rules","type":"List"}},"com.zoho.crm.api.send_mail.ResponseWrapper":{"from_addresses":{"structure_name":"com.zoho.crm.api.send_mail.UserAddress","name":"from_addresses","type":"List"}},"com.zoho.crm.api.record.GetDeletedRecordsParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.territories.ResponseHandler":{"classes":["com.zoho.crm.api.territories.APIException","com.zoho.crm.api.territories.ResponseWrapper"],"interface":true},"com.zoho.crm.api.tags.RecordActionResponse":{"classes":["com.zoho.crm.api.tags.SuccessResponse","com.zoho.crm.api.tags.APIException"],"interface":true},"com.zoho.crm.api.users.ActionHandler":{"classes":["com.zoho.crm.api.users.ActionWrapper","com.zoho.crm.api.users.APIException"],"interface":true},"com.zoho.crm.api.record.RemindAt":{"alarm":{"name":"ALARM","type":"String","required":true}},"com.zoho.crm.api.record.DownloadHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.share_records.DeleteActionResponse":{"classes":["com.zoho.crm.api.share_records.SuccessResponse","com.zoho.crm.api.share_records.APIException"],"interface":true},"com.zoho.crm.api.org.ResponseHandler":{"classes":["com.zoho.crm.api.org.ResponseWrapper","com.zoho.crm.api.org.APIException"],"interface":true},"com.zoho.crm.api.users.User":{"country":{"name":"country","type":"String"},"customize_info":{"lookup":true,"structure_name":"com.zoho.crm.api.users.CustomizeInfo","name":"customize_info","type":"com.zoho.crm.api.users.CustomizeInfo"},"role":{"lookup":true,"structure_name":"com.zoho.crm.api.roles.Role","name":"role","type":"com.zoho.crm.api.roles.Role","required":true},"signature":{"name":"signature","type":"String"},"city":{"name":"city","type":"String"},"sort_order_preference":{"name":"sort_order_preference","type":"String"},"name_format":{"name":"name_format","type":"String"},"language":{"name":"language","type":"String"},"reporting_to":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Reporting_To","type":"com.zoho.crm.api.users.User"},"locale":{"name":"locale","type":"String"},"microsoft":{"name":"microsoft","type":"Boolean"},"personal_account":{"name":"personal_account","type":"Boolean"},"sandboxdeveloper":{"name":"sandboxDeveloper","type":"Boolean"},"isonline":{"name":"Isonline","type":"Boolean"},"default_tab_group":{"name":"default_tab_group","type":"String"},"street":{"name":"street","type":"String"},"currency":{"name":"Currency","type":"String"},"theme":{"lookup":true,"structure_name":"com.zoho.crm.api.users.Theme","name":"theme","type":"com.zoho.crm.api.users.Theme"},"state":{"name":"state","type":"String"},"fax":{"name":"fax","type":"String"},"country_locale":{"name":"country_locale","type":"String"},"first_name":{"name":"first_name","type":"String"},"email":{"name":"email","type":"String","required":true},"decimal_separator":{"name":"decimal_separator","type":"String"},"zip":{"name":"zip","type":"String"},"website":{"name":"website","type":"String"},"time_format":{"name":"time_format","type":"String"},"offset":{"name":"offset","type":"Long"},"profile":{"lookup":true,"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profile","type":"com.zoho.crm.api.profiles.Profile","required":true},"mobile":{"name":"mobile","type":"String"},"last_name":{"name":"last_name","type":"String","required":true},"time_zone":{"name":"time_zone","type":"String"},"zuid":{"name":"zuid","type":"String"},"confirm":{"name":"confirm","type":"Boolean"},"full_name":{"name":"full_name","type":"String"},"territories":{"lookup":true,"structure_name":"com.zoho.crm.api.users.Territory","name":"territories","type":"List"},"phone":{"name":"phone","type":"String"},"dob":{"name":"dob","type":"String"},"name":{"name":"name","type":"String"},"date_format":{"name":"date_format","type":"String"},"alias_1":{"name":"alias","type":"String"},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.tags.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"created_time","type":"DateTime"},{"name":"modified_time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},{"name":"id","type":"Long"},{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},{"structure_name":"com.zoho.crm.api.tags.Tag","name":"tags","type":"List"}],"name":"details","type":"Map"},"message":{"values":["tags created successfully","tags updated successfully","tags deleted successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.currencies.ResponseHandler":{"classes":["com.zoho.crm.api.currencies.ResponseWrapper","com.zoho.crm.api.currencies.APIException"],"interface":true},"com.zoho.crm.api.related_lists.ResponseHandler":{"classes":["com.zoho.crm.api.related_lists.ResponseWrapper","com.zoho.crm.api.related_lists.APIException"],"interface":true},"com.zoho.crm.api.related_records.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.related_records.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.share_records.ResponseWrapper":{"share":{"structure_name":"com.zoho.crm.api.share_records.ShareRecord","name":"share","type":"List"},"shareable_user":{"structure_name":"com.zoho.crm.api.users.User","name":"shareable_user","type":"List"}},"com.zoho.crm.api.share_records.ResponseHandler":{"classes":["com.zoho.crm.api.share_records.APIException","com.zoho.crm.api.share_records.ResponseWrapper"],"interface":true},"com.zoho.crm.api.variables.GetVariableByIDParam":{"group":{"name":"group","type":"String","required":true}},"com.zoho.crm.api.attachments.Attachment":{"owner":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Owner","type":"com.zoho.crm.api.users.User"},"created_time":{"name":"Created_Time","type":"DateTime"},"file_name":{"name":"File_Name","type":"String"},"editable":{"name":"$editable","type":"Boolean"},"se_module":{"name":"$se_module","type":"String"},"description":{"name":"description","type":"String"},"type":{"name":"$type","type":"String"},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"size":{"name":"Size","type":"Long"},"sharing_permission":{"name":"$sharing_permission","type":"String"},"attachment_type":{"name":"$attachment_type","type":"Integer"},"parent_id":{"lookup":true,"structure_name":"com.zoho.crm.api.record.Record","name":"Parent_Id","type":"com.zoho.crm.api.record.Record"},"file_id":{"name":"$file_id","type":"String"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},"link_url":{"name":"$link_url","type":"String"},"state":{"name":"$state","type":"String"},"id":{"name":"id","type":"String","primary":true},"category":{"name":"category","type":"String"}},"com.zoho.crm.api.bulk_write.Result":{"download_url":{"name":"download_url","type":"String"}},"com.zoho.crm.api.pipeline.Stage":{"from":{"name":"from","type":"Long","required":true},"to":{"name":"to","type":"Long","required":true}},"com.zoho.crm.api.notes.ActionResponse":{"classes":["com.zoho.crm.api.notes.SuccessResponse","com.zoho.crm.api.notes.APIException"],"interface":true},"com.zoho.crm.api.files.GetFileParam":{"id":{"name":"id","type":"String","required":true}},"com.zoho.crm.api.pipeline.UpdatePipelinesParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.email_templates.APIException":{"code":{"values":["FEATURE_NOT_SUPPORTED","INVALID_MODULE","NO_PERMISSION","INTERNAL_ERROR","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["the module name given seems to be invalid","feature not available in this edition","permission denied","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.files.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"name","type":"String"},{"name":"id","type":"String"}],"name":"details","type":"Map"},"message":{"values":["uploaded Succeessfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.wizards.ChartData":{"canvas_width":{"name":"canvas_width","type":"Integer"},"nodes":{"structure_name":"com.zoho.crm.api.wizards.Node","name":"nodes","type":"List"},"canvas_height":{"name":"canvas_height","type":"Integer"},"connections":{"structure_name":"com.zoho.crm.api.wizards.Connection","name":"connections","type":"List"}},"com.zoho.crm.api.attachments.ActionHandler":{"classes":["com.zoho.crm.api.attachments.APIException","com.zoho.crm.api.attachments.ActionWrapper"],"interface":true},"com.zoho.crm.api.record.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.bulk_read.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_SERVICE_NAME","INVALID_BULK_OPERATION","RESOURCE_NOT_FOUND","MEDIA_TYPE_NOT_SUPPORTED","REQUEST_BODY_NOT_READABLE","REQUEST_BODY_IS_EMPTY","MODULE_NOT_AVAILABLE","NOT_SUPPORTED_FEATURE","NO_PERMISSION","MODULE_NOT_SUPPORTED","JOB_NOT_SUPPORTED","QUERY_NOT_SUPPORTED","INVALID_CALLBACK_URL","INVALID_CALLBACK_METHOD","JOIN_LIMIT_EXCEEDED","CRITERIA_NOT_SUPPORTED","INVALID_CRITERIA","AMBIGUOUS_CRITERIA","AMBIGUOUS_GROUP_IN_CRITERIA","CRITERIA_LIMIT_EXCEEDED","FIELD_IN_CRITERIA_NOT_SUPPORTED","FIELD_AND_COMPARATOR_IN_CRITERIA_NOT_COMPATIBLE","FIELD_IN_CRITERIA_NOT_AVAILABLE","FIELD_COMPARATOR_IN_CRITERIA_NOT_SUPPORTED","VALUE_IN_CRITERIA_NOT_SUPPORTED","FIELD_AND_VALUE_IN_CRITERIA_NOT_COMPATIBLE","COMPARATOR_AND_VALUE_IN_CRITERIA_NOT_COMPATIBLE","COMPARATOR_AND_ENCRYPTED_VALUE_IN_CRITERIA_NOT_COMPATIBLE","GROUP_OPERATOR_NOT_SUPPORTED","FIELD_NOT_AVAILABLE","FIELD_NOT_SUPPORTED","VALUE_LIMIT_EXCEEDED_IN_CRITERIA","PAGE_NOT_SUPPORTED","PAGE_RANGE_EXCEEDED","TOO_MANY_REQUESTS","CALLBACK_FAILURE","INTERNAL_SERVER_ERROR","INTERNAL_ERROR","OAUTH_SCOPE_MISMATCH","AUTHORIZATION_FAILED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"resource","type":"String"},{"name":"message","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"info_message","type":"String"},{"name":"parent_api_name","type":"String"},{"name":"comparator","type":"String"},{"name":"value","type":"String"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Provided service name %s is not valid/not supported","Requested operation is an invalid bulk operation","record not in process","The requested resource doesn't exist.","Media type is not supported.","Unable to parse the request body.","Request body is empty.","Requested module '%s' is not available.","Feature is not supported"," permission denied","Invalid module for the query. Module '%s' is not supported.","Invalid bulk %s job.","Invalid query for bulk %s job. Query '%s' is not supported.","Invalid URL '%s' for callback.","Invalid request method %s for callback.","Join limit exceeded for the query. Maximum number of joins supported in a query is %d","Invalid criteria for the query. Criteria %s is not supported.","Invalid criteria %s for the query.","Ambiguous criteria %s. Criteria can have either {group"," group_operator} or {api_name"," comparator"," value}.","Ambiguous group in criteria %s. Group should be used only when there are more than one criteria","Number of criteria exceeded the maximum limit of %d","Field api name '%s' for criteria %s is not supported.","Field api name '%s' is not supported with comparator '%s' for criteria %s.","Field api name '%s' is not available for criteria %s. Check visibility and permission for the field","Field api name '%s' doesn't support this comparator '%s' for criteria %s.","Value '%s' is not supported for criteria %s.","Field '%s' is not supported with value '%s' for criteria %s.","Comparator '%s' is not supported with value '%s' for criteria %s.","Comparator '%s' is not supported with value '%s' for criteria %s as the value is encrypted.","Criteria %s doesn't support this logical group operator '%s'. Supported operators are 'and'"," 'or'.","Requested field api name '%s' is not available for the module '%s'. Check permission or visibility for the field.","Invalid field for the module provided in fields. Field api name '%s' is not supported for this module '%s'.","Value exceeded limit %d","Invalid page number for query. Page %s is not supported for the query.","Invalid page number for query. Page %s is not supported for the query. Page range is from %d to %d.","Many requests fired in concurrent than the allowed limit","Callback failed after %d attempts.","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.CarryOverTags":{"deals":{"name":"Deals","type":"List"},"accounts":{"name":"Accounts","type":"List"},"contacts":{"name":"Contacts","type":"List"}},"com.zoho.crm.api.fields.GetFieldsParam":{"module_1":{"name":"module","type":"String"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.files.BodyWrapper":{"file":{"name":"file","max-length":10,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.tags.AddTagsToMultipleRecordsParam":{"ids":{"name":"ids","type":"Long","required":true},"over_write":{"name":"over_write","type":"String"},"tag_names":{"name":"tag_names","type":"String","required":true}},"com.zoho.crm.api.currencies.Format":{"decimal_separator":{"values":["Period","Comma"],"name":"decimal_separator","type":"com.zoho.crm.api.util.Choice","required":true},"thousand_separator":{"values":["Period","Comma","Space"],"name":"thousand_separator","type":"com.zoho.crm.api.util.Choice","required":true},"decimal_places":{"required_in_update":true,"values":["0","2","3"],"name":"decimal_places","type":"com.zoho.crm.api.util.Choice","required":true}},"com.zoho.crm.api.currencies.ResponseWrapper":{"currencies":{"structure_name":"com.zoho.crm.api.currencies.Currency","name":"currencies","type":"List"}},"com.zoho.crm.api.users.TabTheme":{"font_color":{"name":"font_color","type":"String"},"background":{"name":"background","type":"String"}},"com.zoho.crm.api.profiles.Profile":{"created_time":{"name":"created_time","type":"DateTime"},"defaultview":{"structure_name":"com.zoho.crm.api.profiles.DefaultView","name":"_default_view","type":"com.zoho.crm.api.profiles.DefaultView"},"custom":{"name":"custom","type":"Boolean"},"description":{"name":"description","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"delete":{"name":"_delete","type":"Boolean"},"sections":{"structure_name":"com.zoho.crm.api.profiles.Section","name":"sections","type":"List"},"display_label":{"name":"display_label","type":"String"},"default":{"name":"default","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"permission_type":{"name":"permission_type","type":"String"},"permissions_details":{"structure_name":"com.zoho.crm.api.profiles.PermissionDetail","name":"permissions_details","type":"List"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true}},"com.zoho.crm.api.fields.Module":{"layout":{"structure_name":"com.zoho.crm.api.layouts.Layout","name":"layout","type":"com.zoho.crm.api.layouts.Layout"},"display_label":{"name":"display_label","type":"String"},"module_1":{"name":"module","type":"String"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"},"module_name":{"name":"module_name","type":"String"}},"com.zoho.crm.api.territories.Territory":{"created_time":{"name":"created_time","type":"DateTime"},"modified_time":{"name":"modified_time","type":"DateTime"},"permission_type":{"name":"permission_type","type":"String"},"manager":{"structure_name":"com.zoho.crm.api.users.User","name":"manager","type":"com.zoho.crm.api.users.User"},"account_rule_criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"account_rule_criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true},"reporting_to":{"structure_name":"com.zoho.crm.api.territories.Territory","name":"reporting_to","type":"com.zoho.crm.api.territories.Territory"},"deal_rule_criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"deal_rule_criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"}},"com.zoho.crm.api.currencies.Currency":{"symbol":{"name":"symbol","type":"String","required":true},"created_time":{"name":"created_time","type":"DateTime"},"is_active":{"name":"is_active","type":"Boolean"},"exchange_rate":{"name":"exchange_rate","type":"String","required":true},"format":{"structure_name":"com.zoho.crm.api.currencies.Format","name":"format","type":"com.zoho.crm.api.currencies.Format","required":true},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"prefix_symbol":{"name":"prefix_symbol","type":"Boolean"},"is_base":{"name":"is_base","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"name":{"name":"name","type":"String","required":true},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"iso_code":{"name":"iso_code","type":"String","required":true}},"com.zoho.crm.api.variables.ResponseWrapper":{"variables":{"structure_name":"com.zoho.crm.api.variables.Variable","name":"variables","type":"List"}},"com.zoho.crm.api.fields.MultiUserLookup":{"display_label":{"name":"display_label","type":"String"},"linking_module":{"name":"linking_module","type":"String"},"lookup_apiname":{"name":"lookup_apiname","type":"String"},"api_name":{"name":"api_name","type":"String"},"connected_module":{"name":"connected_module","type":"String"},"connectedlookup_apiname":{"name":"connectedlookup_apiname","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.FileHandler":{"classes":["com.zoho.crm.api.record.SuccessResponse","com.zoho.crm.api.record.APIException"],"interface":true},"com.zoho.crm.api.share_records.DeleteActionWrapper":{"share":{"structure_name":"com.zoho.crm.api.share_records.DeleteActionResponse","name":"share","interface":true,"type":"com.zoho.crm.api.share_records.DeleteActionResponse"}},"com.zoho.crm.api.roles.ResponseHandler":{"classes":["com.zoho.crm.api.roles.APIException","com.zoho.crm.api.roles.ResponseWrapper"],"interface":true},"com.zoho.crm.api.taxes.ResponseWrapper":{"preference":{"structure_name":"com.zoho.crm.api.taxes.Preference","name":"preference","type":"com.zoho.crm.api.taxes.Preference"},"taxes":{"structure_name":"com.zoho.crm.api.taxes.Tax","name":"taxes","type":"List"}},"com.zoho.crm.api.send_mail.ResponseHandler":{"classes":["com.zoho.crm.api.send_mail.APIException","com.zoho.crm.api.send_mail.ResponseWrapper"],"interface":true},"com.zoho.crm.api.taxes.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"name","type":"String"},{"name":"value","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["tax added","record updated","tax deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.GetUserHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.record.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.currencies.BodyWrapper":{"currencies":{"structure_name":"com.zoho.crm.api.currencies.Currency","name":"currencies","max-length":10,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.bulk_write.APIException":{"error_message":{"values":["Bad Request"],"name":"ERROR_MESSAGE","type":"com.zoho.crm.api.util.Choice"},"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","FILE_TOO_LARGE","INVALID_FILE_FORMAT","MANDATORY_FIELDS_NOT_MAPPED","MANDATORY_NOT_FOUND","INVALID_FIELD","INVALID_FORMAT","INVALID_FILE_ID","HEADER_LIMIT_EXCEEDED","COLUMN_INDEX_NOT_FOUND","MODULE_NOT_AVAILABLE","INVALID_DATA","DUPLICATE_DATA","NOT_APPROVED","BLOCKED_RECORD","CANNOT_PROCESS","LIMIT_EXCEEDED","RESOURCE_NOT_FOUND","MISSING_REQUIRED_KEY","INVALID_FIELD_NAME","FILE_NOT_SUPPORTED","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"x_info":{"values":["Link not valid"],"name":"x-info","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"error_code":{"name":"ERROR_CODE","type":"Integer"},"http_status":{"name":"http_status","type":"String"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","invalid file format. only zip format is supported","File size too large to process","The requested resource doesn't exist.","required key operation is not found in request body.","improper file id","required key index for field Company is not found in request body.","All mandatory fields are not mapped for the layout","Requested module 'asdf' is not available.","invalid mapping. invalid api_name ast_Name.","File not supported for bulk write","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"x_error":{"values":["check if headers [feature:X-CRM-ORG] are present and valid"],"name":"x-error","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"},"info":{"values":["Forbidden"],"name":"info","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.inventory_templates.GetInventoryTemplatesParam":{"module_1":{"name":"module","type":"String"},"sort_by":{"name":"sort_by","type":"String"},"category":{"name":"category","type":"String"},"sort_order":{"name":"sort_order","type":"String"}},"com.zoho.crm.api.notes.BodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.notes.Note","name":"data","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.util.Model":{"classes":["com.zoho.crm.api.inventory_templates.ResponseWrapper","com.zoho.crm.api.inventory_templates.InventoryTemplate","com.zoho.crm.api.inventory_templates.APIException","com.zoho.crm.api.attachments.SuccessResponse","com.zoho.crm.api.attachments.APIException","com.zoho.crm.api.attachments.Attachment","com.zoho.crm.api.attachments.ActionWrapper","com.zoho.crm.api.attachments.ResponseWrapper","com.zoho.crm.api.attachments.FileBodyWrapper","com.zoho.crm.api.notes.ActionWrapper","com.zoho.crm.api.notes.SuccessResponse","com.zoho.crm.api.notes.BodyWrapper","com.zoho.crm.api.notes.APIException","com.zoho.crm.api.notes.Info","com.zoho.crm.api.notes.ResponseWrapper","com.zoho.crm.api.notes.Note","com.zoho.crm.api.roles.Role","com.zoho.crm.api.roles.APIException","com.zoho.crm.api.roles.ResponseWrapper","com.zoho.crm.api.related_lists.ResponseWrapper","com.zoho.crm.api.related_lists.RelatedList","com.zoho.crm.api.related_lists.APIException","com.zoho.crm.api.taxes.Preference","com.zoho.crm.api.taxes.ActionWrapper","com.zoho.crm.api.taxes.SuccessResponse","com.zoho.crm.api.taxes.APIException","com.zoho.crm.api.taxes.ResponseWrapper","com.zoho.crm.api.taxes.BodyWrapper","com.zoho.crm.api.taxes.Tax","com.zoho.crm.api.email_templates.APIException","com.zoho.crm.api.email_templates.Attachment","com.zoho.crm.api.email_templates.EmailTemplate","com.zoho.crm.api.email_templates.ResponseWrapper","com.zoho.crm.api.layouts.ResponseWrapper","com.zoho.crm.api.layouts.Section","com.zoho.crm.api.layouts.APIException","com.zoho.crm.api.layouts.Properties","com.zoho.crm.api.layouts.Layout","com.zoho.crm.api.bulk_write.CallBack","com.zoho.crm.api.bulk_write.SuccessResponse","com.zoho.crm.api.bulk_write.RequestWrapper","com.zoho.crm.api.bulk_write.APIException","com.zoho.crm.api.bulk_write.BulkWriteResponse","com.zoho.crm.api.bulk_write.File","com.zoho.crm.api.bulk_write.Resource","com.zoho.crm.api.bulk_write.FieldMapping","com.zoho.crm.api.bulk_write.FileBodyWrapper","com.zoho.crm.api.bulk_write.Result","com.zoho.crm.api.custom_views.Translation","com.zoho.crm.api.custom_views.SharedTo","com.zoho.crm.api.custom_views.ResponseWrapper","com.zoho.crm.api.custom_views.Info","com.zoho.crm.api.custom_views.CustomView","com.zoho.crm.api.custom_views.Criteria","com.zoho.crm.api.custom_views.Range","com.zoho.crm.api.custom_views.APIException","com.zoho.crm.api.notification.SuccessResponse","com.zoho.crm.api.notification.Info","com.zoho.crm.api.notification.BodyWrapper","com.zoho.crm.api.notification.APIException","com.zoho.crm.api.notification.ActionWrapper","com.zoho.crm.api.notification.ResponseWrapper","com.zoho.crm.api.notification.Notification","com.zoho.crm.api.blue_print.Transition","com.zoho.crm.api.blue_print.BluePrint","com.zoho.crm.api.blue_print.Escalation","com.zoho.crm.api.blue_print.SuccessResponse","com.zoho.crm.api.blue_print.BodyWrapper","com.zoho.crm.api.blue_print.NextTransition","com.zoho.crm.api.blue_print.ProcessInfo","com.zoho.crm.api.blue_print.ResponseWrapper","com.zoho.crm.api.blue_print.APIException","com.zoho.crm.api.blue_print.ValidationError","com.zoho.crm.api.blue_print.Field","com.zoho.crm.api.files.BodyWrapper","com.zoho.crm.api.files.SuccessResponse","com.zoho.crm.api.files.ActionWrapper","com.zoho.crm.api.files.APIException","com.zoho.crm.api.files.FileBodyWrapper","com.zoho.crm.api.record.Widget","com.zoho.crm.api.record.ResponseWrapper","com.zoho.crm.api.record.Consent","com.zoho.crm.api.record.SuccessResponse","com.zoho.crm.api.record.ConvertActionWrapper","com.zoho.crm.api.record.MassUpdateBodyWrapper","com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.Wizard","com.zoho.crm.api.record.MassUpdateTerritory","com.zoho.crm.api.record.Territory","com.zoho.crm.api.record.SuccessfulConvert","com.zoho.crm.api.record.LeadConverter","com.zoho.crm.api.record.BodyWrapper","com.zoho.crm.api.record.Criteria","com.zoho.crm.api.record.MassUpdateActionWrapper","com.zoho.crm.api.record.Info","com.zoho.crm.api.record.FileBodyWrapper","com.zoho.crm.api.record.MassUpdate","com.zoho.crm.api.record.ActionWrapper","com.zoho.crm.api.record.Record","com.zoho.crm.api.record.RemindAt","com.zoho.crm.api.record.Participants","com.zoho.crm.api.record.ConvertBodyWrapper","com.zoho.crm.api.record.MassUpdateResponseWrapper","com.zoho.crm.api.record.PriceBook","com.zoho.crm.api.record.Tax","com.zoho.crm.api.record.FileDetails","com.zoho.crm.api.record.MultiSelectPicklist","com.zoho.crm.api.record.DeletedRecordsWrapper","com.zoho.crm.api.record.Reminder","com.zoho.crm.api.record.DeletedRecord","com.zoho.crm.api.record.LineTax","com.zoho.crm.api.record.RecurringActivity","com.zoho.crm.api.record.LineItemProduct","com.zoho.crm.api.record.Comment","com.zoho.crm.api.record.MultiSelectLookup","com.zoho.crm.api.record.CarryOverTags","com.zoho.crm.api.record.MassUpdateSuccessResponse","com.zoho.crm.api.record.PricingDetails","com.zoho.crm.api.record.CountWrapper","com.zoho.crm.api.record.ImageUpload","com.zoho.crm.api.related_records.APIException","com.zoho.crm.api.related_records.SuccessResponse","com.zoho.crm.api.related_records.ActionWrapper","com.zoho.crm.api.related_records.ResponseWrapper","com.zoho.crm.api.related_records.FileBodyWrapper","com.zoho.crm.api.related_records.BodyWrapper","com.zoho.crm.api.field_attachments.FileBodyWrapper","com.zoho.crm.api.field_attachments.APIException","com.zoho.crm.api.field_attachments.BodyWrapper","com.zoho.crm.api.send_mail.APIException","com.zoho.crm.api.send_mail.ResponseWrapper","com.zoho.crm.api.send_mail.Mail","com.zoho.crm.api.send_mail.UserAddress","com.zoho.crm.api.send_mail.SuccessResponse","com.zoho.crm.api.send_mail.BodyWrapper","com.zoho.crm.api.send_mail.InventoryDetails","com.zoho.crm.api.send_mail.ActionWrapper","com.zoho.crm.api.send_mail.DataSubjectRequest","com.zoho.crm.api.share_records.SuccessResponse","com.zoho.crm.api.share_records.SharedThrough","com.zoho.crm.api.share_records.APIException","com.zoho.crm.api.share_records.ResponseWrapper","com.zoho.crm.api.share_records.ShareRecord","com.zoho.crm.api.share_records.DeleteActionWrapper","com.zoho.crm.api.share_records.BodyWrapper","com.zoho.crm.api.share_records.ActionWrapper","com.zoho.crm.api.bulk_read.Criteria","com.zoho.crm.api.bulk_read.Query","com.zoho.crm.api.bulk_read.RequestWrapper","com.zoho.crm.api.bulk_read.SuccessResponse","com.zoho.crm.api.bulk_read.JobDetail","com.zoho.crm.api.bulk_read.Result","com.zoho.crm.api.bulk_read.CallBack","com.zoho.crm.api.bulk_read.ResponseWrapper","com.zoho.crm.api.bulk_read.APIException","com.zoho.crm.api.bulk_read.ActionWrapper","com.zoho.crm.api.bulk_read.FileBodyWrapper","com.zoho.crm.api.variables.ResponseWrapper","com.zoho.crm.api.variables.BodyWrapper","com.zoho.crm.api.variables.APIException","com.zoho.crm.api.variables.Variable","com.zoho.crm.api.variables.SuccessResponse","com.zoho.crm.api.variables.ActionWrapper","com.zoho.crm.api.assignment_rules.ResponseWrapper","com.zoho.crm.api.assignment_rules.APIException","com.zoho.crm.api.assignment_rules.DefaultUser","com.zoho.crm.api.assignment_rules.AssignmentRule","com.zoho.crm.api.org.SuccessResponse","com.zoho.crm.api.org.ResponseWrapper","com.zoho.crm.api.org.Org","com.zoho.crm.api.org.HierarchyPreference","com.zoho.crm.api.org.LicenseDetails","com.zoho.crm.api.org.APIException","com.zoho.crm.api.org.FileBodyWrapper","com.zoho.crm.api.query.ResponseWrapper","com.zoho.crm.api.query.BodyWrapper","com.zoho.crm.api.query.APIException","com.zoho.crm.api.profiles.APIException","com.zoho.crm.api.profiles.Category","com.zoho.crm.api.profiles.DefaultView","com.zoho.crm.api.profiles.Profile","com.zoho.crm.api.profiles.PermissionDetail","com.zoho.crm.api.profiles.Section","com.zoho.crm.api.profiles.ResponseWrapper","com.zoho.crm.api.users.ActionWrapper","com.zoho.crm.api.users.SuccessResponse","com.zoho.crm.api.users.ResponseWrapper","com.zoho.crm.api.users.Territory","com.zoho.crm.api.users.CustomizeInfo","com.zoho.crm.api.users.Theme","com.zoho.crm.api.users.BodyWrapper","com.zoho.crm.api.users.Info","com.zoho.crm.api.users.Shift","com.zoho.crm.api.users.RequestWrapper","com.zoho.crm.api.users.User","com.zoho.crm.api.users.APIException","com.zoho.crm.api.users.TabTheme","com.zoho.crm.api.modules.Module","com.zoho.crm.api.modules.Territory","com.zoho.crm.api.modules.APIException","com.zoho.crm.api.modules.SuccessResponse","com.zoho.crm.api.modules.ActionWrapper","com.zoho.crm.api.modules.ResponseWrapper","com.zoho.crm.api.modules.Argument","com.zoho.crm.api.modules.RelatedListProperties","com.zoho.crm.api.modules.BodyWrapper","com.zoho.crm.api.tags.MergeWrapper","com.zoho.crm.api.tags.ActionWrapper","com.zoho.crm.api.tags.BodyWrapper","com.zoho.crm.api.tags.ResponseWrapper","com.zoho.crm.api.tags.Tag","com.zoho.crm.api.tags.Info","com.zoho.crm.api.tags.SuccessResponse","com.zoho.crm.api.tags.APIException","com.zoho.crm.api.tags.RecordActionWrapper","com.zoho.crm.api.tags.CountWrapper","com.zoho.crm.api.tags.ConflictWrapper","com.zoho.crm.api.pipeline.PickListValue","com.zoho.crm.api.pipeline.Pipeline","com.zoho.crm.api.pipeline.BodyWrapper","com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.TransferAndDeleteWrapper","com.zoho.crm.api.pipeline.ActionWrapper","com.zoho.crm.api.pipeline.TransferActionWrapper","com.zoho.crm.api.pipeline.TransferPipeLine","com.zoho.crm.api.pipeline.ForecastCategory","com.zoho.crm.api.pipeline.ResponseWrapper","com.zoho.crm.api.pipeline.Stage","com.zoho.crm.api.pipeline.SuccessResponse","com.zoho.crm.api.territories.Territory","com.zoho.crm.api.territories.APIException","com.zoho.crm.api.territories.ResponseWrapper","com.zoho.crm.api.contact_roles.ResponseWrapper","com.zoho.crm.api.contact_roles.SuccessResponse","com.zoho.crm.api.contact_roles.BodyWrapper","com.zoho.crm.api.contact_roles.APIException","com.zoho.crm.api.contact_roles.ActionWrapper","com.zoho.crm.api.contact_roles.ContactRole","com.zoho.crm.api.fields.RelatedDetails","com.zoho.crm.api.fields.MultiModuleLookup","com.zoho.crm.api.fields.Field","com.zoho.crm.api.fields.Unique","com.zoho.crm.api.fields.ViewType","com.zoho.crm.api.fields.AutoNumber","com.zoho.crm.api.fields.Maps","com.zoho.crm.api.fields.MultiSelectLookup","com.zoho.crm.api.fields.PickListValue","com.zoho.crm.api.fields.ToolTip","com.zoho.crm.api.fields.Currency","com.zoho.crm.api.fields.MultiUserLookup","com.zoho.crm.api.fields.External","com.zoho.crm.api.fields.HistoryTracking","com.zoho.crm.api.fields.LookupField","com.zoho.crm.api.fields.APIException","com.zoho.crm.api.fields.AssociationDetails","com.zoho.crm.api.fields.Crypt","com.zoho.crm.api.fields.ResponseWrapper","com.zoho.crm.api.fields.Formula","com.zoho.crm.api.fields.Private","com.zoho.crm.api.fields.Module","com.zoho.crm.api.variable_groups.ResponseWrapper","com.zoho.crm.api.variable_groups.VariableGroup","com.zoho.crm.api.variable_groups.APIException","com.zoho.crm.api.currencies.Currency","com.zoho.crm.api.currencies.ResponseWrapper","com.zoho.crm.api.currencies.SuccessResponse","com.zoho.crm.api.currencies.BaseCurrencyWrapper","com.zoho.crm.api.currencies.ActionWrapper","com.zoho.crm.api.currencies.APIException","com.zoho.crm.api.currencies.BodyWrapper","com.zoho.crm.api.currencies.Format","com.zoho.crm.api.currencies.BaseCurrencyActionWrapper","com.zoho.crm.api.wizards.Button","com.zoho.crm.api.wizards.ChartData","com.zoho.crm.api.wizards.Wizard","com.zoho.crm.api.wizards.Connection","com.zoho.crm.api.wizards.Screen","com.zoho.crm.api.wizards.Node","com.zoho.crm.api.wizards.Segment","com.zoho.crm.api.wizards.Transition","com.zoho.crm.api.wizards.ResponseWrapper","com.zoho.crm.api.wizards.Container","com.zoho.crm.api.wizards.APIException"],"interface":true},"com.zoho.crm.api.assignment_rules.AssignmentRule":{"created_time":{"name":"created_time","type":"DateTime"},"modified_time":{"name":"modified_time","type":"DateTime"},"module_1":{"structure_name":"com.zoho.crm.api.modules.Module","name":"module","type":"com.zoho.crm.api.modules.Module"},"default_assignee":{"structure_name":"com.zoho.crm.api.assignment_rules.DefaultUser","name":"default_assignee","type":"com.zoho.crm.api.assignment_rules.DefaultUser"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"}},"com.zoho.crm.api.record.GetRecordHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.attachments.APIException":{"code":{"values":["NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"id","type":"Long"},{"name":"resource_path_index","type":"Integer"},{"name":"related_status","type":"String"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["As it is a linked attachment"," you can not download it","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Attachment link already exists","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notes.Note":{"owner":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Owner","type":"com.zoho.crm.api.users.User"},"note_content":{"name":"Note_Content","type":"String","required":true},"created_time":{"name":"Created_Time","type":"DateTime"},"attachments":{"lookup":true,"structure_name":"com.zoho.crm.api.attachments.Attachment","name":"$attachments","type":"List"},"note_title":{"name":"Note_Title","type":"String"},"editable":{"name":"$editable","type":"Boolean"},"se_module":{"name":"$se_module","type":"String","required":true},"voice_note":{"name":"$voice_note","type":"Boolean"},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"size":{"name":"$size","type":"String"},"sharing_permission":{"name":"$sharing_permission","type":"String"},"parent_id":{"lookup":true,"structure_name":"com.zoho.crm.api.record.Record","name":"Parent_Id","type":"com.zoho.crm.api.record.Record","required":true},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},"state":{"name":"$state","type":"String"},"id":{"name":"id","type":"Long","primary":true},"is_shared_to_client":{"name":"$is_shared_to_client","type":"Boolean"}},"com.zoho.crm.api.related_lists.APIException":{"code":{"values":["INVALID_MODULE","REQUIRED_PARAM_MISSING","INTERNAL_ERROR","INVALID_URL_PATTERN","OAUTH_SCOPE_MISMATCH","NO_PERMISSION","INVALID_REQUEST_METHOD","AUTHORIZATION_FAILED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Please check if the URL trying to access is a correct one","the module name given seems to be invalid","the given module is not supported in api","One of the expected parameter is missing","Internal server error","Unauthorized","Permission denied to read","Bad Request","The http request method type is not a valid one","User does not have sufficient privilege to read related lists data"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.SuccessfulConvert":{"deals":{"name":"Deals","type":"String"},"accounts":{"name":"Accounts","type":"String"},"contacts":{"name":"Contacts","type":"String"}},"com.zoho.crm.api.modules.ActionHandler":{"classes":["com.zoho.crm.api.modules.APIException","com.zoho.crm.api.modules.ActionWrapper"],"interface":true},"com.zoho.crm.api.fields.AssociationDetails":{"related_field":{"structure_name":"com.zoho.crm.api.fields.LookupField","name":"related_field","type":"com.zoho.crm.api.fields.LookupField"},"lookup_field":{"structure_name":"com.zoho.crm.api.fields.LookupField","name":"lookup_field","type":"com.zoho.crm.api.fields.LookupField"}},"com.zoho.crm.api.email_templates.GetEmailTemplatesParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.field_attachments.GetFieldAttachmentsParam":{"fields_attachment_id":{"name":"fields_attachment_id","type":"Long"}},"com.zoho.crm.api.users.RequestWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.User","name":"users","max-length":1,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.wizards.Transition":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.fields.Maps":{"api_name":{"name":"api_name","type":"String"},"pick_list_values":{"structure_name":"com.zoho.crm.api.fields.PickListValue","name":"pick_list_values","type":"List"}},"com.zoho.crm.api.record.LineTax":{"percentage":{"name":"percentage","type":"Double"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"display_name":{"name":"display_name","type":"String"},"value":{"name":"value","type":"Double"}},"com.zoho.crm.api.variables.ActionResponse":{"classes":["com.zoho.crm.api.variables.APIException","com.zoho.crm.api.variables.SuccessResponse"],"interface":true},"com.zoho.crm.api.record.DeleteRecordParam":{"wf_trigger":{"name":"wf_trigger","type":"String"}},"com.zoho.crm.api.territories.ResponseWrapper":{"territories":{"structure_name":"com.zoho.crm.api.territories.Territory","name":"territories","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.modules.RelatedListProperties":{"sort_by":{"name":"sort_by","type":"String"},"fields":{"name":"fields","type":"List"},"sort_order":{"name":"sort_order","type":"String"}},"com.zoho.crm.api.fields.ResponseWrapper":{"fields":{"structure_name":"com.zoho.crm.api.fields.Field","name":"fields","type":"List"}},"com.zoho.crm.api.currencies.BaseCurrencyActionWrapper":{"base_currency":{"structure_name":"com.zoho.crm.api.currencies.ActionResponse","name":"base_currency","interface":true,"type":"com.zoho.crm.api.currencies.ActionResponse"}},"com.zoho.crm.api.files.ActionHandler":{"classes":["com.zoho.crm.api.files.ActionWrapper","com.zoho.crm.api.files.APIException"],"interface":true},"com.zoho.crm.api.related_records.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.bulk_read.SuccessResponse":{"code":{"values":["ADDED_SUCCESSFULLY"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"operation","type":"String"},{"values":["COMPLETED","IN PROGRESS","ADDED","FAILURE"],"name":"state","type":"com.zoho.crm.api.util.Choice"},{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},{"name":"created_time","type":"DateTime"}],"name":"details","type":"Map"},"message":{"values":["Added successfully."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.pipeline.ActionHandler":{"classes":["com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.ActionWrapper"],"interface":true},"com.zoho.crm.api.query.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.record.MassUpdateResponseHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.MassUpdateResponseWrapper"],"interface":true},"com.zoho.crm.api.variables.ActionWrapper":{"variables":{"structure_name":"com.zoho.crm.api.variables.ActionResponse","name":"variables","type":"List","required":true}},"com.zoho.crm.api.record.ConvertActionHandler":{"classes":["com.zoho.crm.api.record.ConvertActionWrapper","com.zoho.crm.api.record.APIException"],"interface":true},"com.zoho.crm.api.record.ConvertBodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.LeadConverter","name":"data","max-length":1,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.tags.CreateTagsParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.tags.RemoveTagsFromRecordParam":{"tag_names":{"name":"tag_names","type":"String","required":true}},"com.zoho.crm.api.tags.UpdateTagsParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.send_mail.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","NOT_ALLOWED","FILE_SIZE_EXCEEDS","CUSTOM_ERROR","FEATURE_NOT_SUPPORTED","INVALID_DATA","INTERNAL_ERROR","NO_PERMISSION","CUSTOM_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"api_name","type":"String"},{"name":"index","type":"Integer"},{"name":"parent_api_name","type":"String"},{"name":"period","type":"String"},{"name":"reason","type":"String"},{"name":"allowed_limit","type":"Integer"},{"name":"size","type":"Integer"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Daily limit exceeded for send mail","required field not found","permission denied","Account confirmation required.Please confirm your account registration so that you can send emails","Email Confirmation Required.Please confirm your email associated to your account so that you can send emails","required field not found","invalid data","permission denied to access the api","You have reached the daily mail usage limit for your organization.","Sorry"," your organization has been blocked from sending email. Please contact support@zohocrm.com for additional information.","Internal server error occurred.","You cannot send an email to this customer because this person has opted to stop the email communication","You cannot send email to this record as it doesn't have either primary or secondary email address","You cannot send email to this record as associated contact doesn't have either primary or secondary email address","Email cannot be sent as record's email field contain one or more blocked emaill","Email cannot be sent as recipient email's contain one or more blocked email","Email can't be sent using this from address.Kindly check the allowed from address list","the related id given seems to be invalid","You cannot send email to get consent from customer as Compliance settings is not enabled","There is no file exists with the given id","Have not consented to receive email from you","Total file(s) size should not exceed 10MB","Connectivity issue occured when sending mail via your SMTP server","You cannot schedule email as your license type does not support email scheduling"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.DeletedRecordsHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.DeletedRecordsWrapper"],"interface":true},"com.zoho.crm.api.users.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"email","type":"String"}],"name":"details","type":"Map"},"message":{"values":["User added","User updated","User deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.GetUsersHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.fields.RelatedDetails":{"display_label":{"name":"display_label","type":"String"},"module_1":{"structure_name":"com.zoho.crm.api.fields.Module","name":"module","type":"com.zoho.crm.api.fields.Module"},"api_name":{"name":"api_name","type":"String"},"field_label":{"name":"field_label","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"_type","type":"String"}},"com.zoho.crm.api.contact_roles.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"limit","type":"Integer"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the module name given seems to be invalid","duplicate data","Contact Role feature limit exceeded","required field not found","invalid data","contact role not deleted","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.fields.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","INTERNAL_ERROR","REQUIRED_PARAM_MISSING"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the given module is not supported for this api","Internal server error occurred.","the module name given seems to be invalid"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notification.GetNotificationDetailsParam":{"per_page":{"name":"per_page","type":"Integer"},"module_1":{"name":"module","type":"String"},"page":{"name":"page","type":"Integer"},"channel_id":{"name":"channel_id","type":"Long"}},"com.zoho.crm.api.bulk_read.Criteria":{"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com.zoho.crm.api.util.Choice"},"field":{"structure_name":"com.zoho.crm.api.fields.Field","name":"field","type":"com.zoho.crm.api.fields.Field"},"api_name":{"name":"api_name","type":"String"},"group_operator":{"values":["and","or"],"name":"group_operator","type":"com.zoho.crm.api.util.Choice"},"value":{"name":"value","type":"Object"},"group":{"structure_name":"com.zoho.crm.api.bulk_read.Criteria","name":"group","type":"List"}},"com.zoho.crm.api.fields.ViewType":{"view":{"name":"view","type":"Boolean"},"edit":{"name":"edit","type":"Boolean"},"quick_create":{"name":"quick_create","type":"Boolean"},"create":{"name":"create","type":"Boolean"}},"com.zoho.crm.api.notes.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.notes.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.fields.External":{"allow_multiple_config":{"name":"allow_multiple_config","type":"Boolean"},"show":{"name":"show","type":"Boolean"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.record.MultiSelectPicklist":{"fieldname":{"name":"fieldName","type":"Map"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.fields.Private":{"restricted":{"name":"restricted","type":"Boolean"},"type":{"name":"type","type":"String"},"export":{"name":"export","type":"Boolean"}},"com.zoho.crm.api.blue_print.ProcessInfo":{"field_id":{"name":"field_id","type":"String"},"escalation":{"structure_name":"com.zoho.crm.api.blue_print.Escalation","name":"escalation","type":"com.zoho.crm.api.blue_print.Escalation"},"is_continuous":{"name":"is_continuous","type":"Boolean"},"api_name":{"name":"api_name","type":"String"},"continuous":{"name":"continuous","type":"Boolean"},"field_label":{"name":"field_label","type":"String"},"name":{"name":"name","type":"String"},"column_name":{"name":"column_name","type":"String"},"field_value":{"name":"field_value","type":"String"},"id":{"name":"id","type":"Long"},"field_name":{"name":"field_name","type":"String"}},"com.zoho.crm.api.notification.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR","NOT_SUBSCRIBED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"maximum_length","type":"Integer"},{"name":"param","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the module name given seems to be invalid","duplicate data","Not subscribed for actions-watch of the given module/channel","required field not found","invalid data","Not subscribed for actions-watch of the given channel","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.Shift":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.pipeline.ResponseHandler":{"classes":["com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.ResponseWrapper"],"interface":true},"com.zoho.crm.api.contact_roles.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["contact role added","contact role updated","contact role deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.modules.ActionWrapper":{"modules":{"structure_name":"com.zoho.crm.api.modules.ActionResponse","name":"modules","type":"List"}},"com.zoho.crm.api.fields.MultiModuleLookup":{"module_1":{"structure_name":"com.zoho.crm.api.fields.Module","name":"module","type":"com.zoho.crm.api.fields.Module"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.attachments.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.record.PricingDetails":{"to_range":{"name":"to_range","type":"Double","required":true},"discount":{"name":"discount","type":"Double","required":true},"from_range":{"name":"from_range","type":"Double","required":true}},"com.zoho.crm.api.custom_views.ResponseWrapper":{"custom_views":{"structure_name":"com.zoho.crm.api.custom_views.CustomView","name":"custom_views","type":"List"},"info":{"structure_name":"com.zoho.crm.api.custom_views.Info","name":"info","type":"com.zoho.crm.api.custom_views.Info"}},"com.zoho.crm.api.send_mail.InventoryDetails":{"view_type":{"name":"view_type","type":"String"},"inventory_template":{"structure_name":"com.zoho.crm.api.inventory_templates.InventoryTemplate","name":"inventory_template","type":"com.zoho.crm.api.inventory_templates.InventoryTemplate"},"paper_type":{"name":"paper_type","type":"String"}},"com.zoho.crm.api.files.ResponseHandler":{"classes":["com.zoho.crm.api.files.APIException","com.zoho.crm.api.files.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.wizards.Segment":{"sequence_number":{"name":"sequence_number","type":"Integer"},"display_label":{"name":"display_label","type":"String"},"buttons":{"structure_name":"com.zoho.crm.api.wizards.Button","name":"buttons","type":"List"},"column_count":{"name":"column_count","type":"Integer"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"fields":{"structure_name":"com.zoho.crm.api.fields.Field","name":"fields","type":"List"}},"com.zoho.crm.api.bulk_write.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.record.CountWrapper":{"count":{"name":"count","type":"String"}},"com.zoho.crm.api.field_attachments.APIException":{"code":{"values":["INTERNAL_ERROR","INVALID_TOKEN","INVALID_DATA","NO_PERMISSION","INVALID_MODULE","NOT_SUPPORTED","OAUTH_SCOPE_MISMATCH","AUTHENTICATION_FAILURE"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"resource_path_index","type":"Integer"},{"name":"permissions","type":"List"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","invalid data","permission denied","Internal server error occurred.","Authentication failed","the id given seems to be invalid","unable to process your request. please verify whether you have entered proper method name"," parameter and parameter values."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.CountHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.CountWrapper"],"interface":true},"com.zoho.crm.api.modules.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["module updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.roles.Role":{"display_label":{"name":"display_label","type":"String"},"forecast_manager":{"structure_name":"com.zoho.crm.api.users.User","name":"forecast_manager","type":"com.zoho.crm.api.users.User"},"share_with_peers":{"name":"share_with_peers","type":"Boolean"},"name":{"name":"name","type":"String"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true},"reporting_to":{"structure_name":"com.zoho.crm.api.users.User","name":"reporting_to","type":"com.zoho.crm.api.users.User"},"admin_user":{"name":"admin_user","type":"Boolean"}},"com.zoho.crm.api.tags.RecordActionHandler":{"classes":["com.zoho.crm.api.tags.APIException","com.zoho.crm.api.tags.RecordActionWrapper"],"interface":true},"com.zoho.crm.api.bulk_write.RequestWrapper":{"resource":{"structure_name":"com.zoho.crm.api.bulk_write.Resource","name":"resource","type":"List","required":true},"character_encoding":{"name":"character_encoding","type":"String"},"callback":{"structure_name":"com.zoho.crm.api.bulk_write.CallBack","name":"callback","type":"com.zoho.crm.api.bulk_write.CallBack"},"operation":{"values":["insert","update","upsert"],"name":"operation","type":"com.zoho.crm.api.util.Choice","required":true}},"com.zoho.crm.api.contact_roles.ActionResponse":{"classes":["com.zoho.crm.api.contact_roles.SuccessResponse","com.zoho.crm.api.contact_roles.APIException"],"interface":true},"com.zoho.crm.api.record.Wizard":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.MassUpdateBodyWrapper":{"cvid":{"name":"cvid","type":"String"},"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List","skip_mandatory":true,"required":true},"criteria":{"structure_name":"com.zoho.crm.api.record.Criteria","name":"criteria","type":"List"},"ids":{"name":"ids","type":"List"},"over_write":{"name":"over_write","type":"Boolean"},"territory":{"structure_name":"com.zoho.crm.api.record.MassUpdateTerritory","name":"territory","type":"com.zoho.crm.api.record.MassUpdateTerritory"}},"com.zoho.crm.api.variable_groups.VariableGroup":{"display_label":{"name":"display_label","type":"String"},"api_name":{"name":"api_name","type":"String"},"name":{"name":"name","type":"String"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true}},"com.zoho.crm.api.related_lists.GetRelatedListsParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.bulk_read.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.tags.BodyWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"tags","type":"List","required":true}},"com.zoho.crm.api.email_templates.ResponseHandler":{"classes":["com.zoho.crm.api.email_templates.APIException","com.zoho.crm.api.email_templates.ResponseWrapper"],"interface":true},"com.zoho.crm.api.record.PriceBook":{"name":{"name":"name","type":"String"}},"com.zoho.crm.api.notes.GetNoteHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime","required":true}},"com.zoho.crm.api.record.APIException":{"code":{"values":["NOT_ALLOWED","ALREADY_USED","TERRITORY_NOT_ENABLED","DEPENDENT_FIELD_MISSING","EXPECTED_FIELD_MISSING","FEATURE_NOT_SUPPORTED","CONVERTED_RECORD","NOT_FOUND","NO_RECORDS_FOUND","NOT_APPROVED","LIMIT_EXCEEDED","ALREADY_SCHEDULED","CANNOT_PERFORM_ACTION","CANNOT_PROCESS","INTERNAL_ERROR","INVALID_TOKEN","INVALID_DATA","STORAGE_SPACE_EXCEEDED","MANDATORY_NOT_FOUND","NO_PERMISSION","INVALID_MODULE","NOT_SUPPORTED","PATTERN_NOT_MATCHED","OAUTH_SCOPE_MISMATCH","DUPLICATE_DATA","INVALID_QUERY","MAPPING_MISMATCH","ID_ALREADY_CONVERTED","FILE_SIZE_MORE_THAN_ALLOWED_SIZE","RECORD_IN_BLUEPRINT","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","CANNOT_DELETE","REQUIRED_PARAM_MISSING","DATA_MISMATCH","RECORD_LOCKED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"param_name","type":"String"},{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"module","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"index","type":"Integer"},{"name":"maximum_length","type":"String"},{"name":"mapped_field","type":"String"},{"name":"reason","type":"String"},{"name":"operator","type":"String"},{"name":"allowed_count","type":"Integer"},{"name":"limit","type":"Integer"},{"name":"json_path","type":"String"},{"name":"parent_api_name","type":"String"},{"name":"param","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["the territory feature is not enabled","Given Probability is not valid","duplicate territory id found","Given Territory id already exists for that record","User has no permission to assign this territory","Maximum limit of territories for that record exceeds","Invalid Sequence Number","Record insertion limit for Image upload field has been exceeded.","Record insertion limit has been exceeded.","The image format is invalid.","Dependent Fields missing","Specify Atleast one field","the id given seems to be invalid.","Already an Mass Action scheduler is runing for the given cvid","Scheduled Mass Operation feature is not available in your edition","can't update the converted record","Field cannot be updated in Scheduled Mass Update","Field is not visible","Field cannot be updated as it is associated with a validation rule.","Field cannot be updated as it is associated with a layout rule.This field cannot be updated in the Mass Update","Max field limit exceeded","Maximum lookup field limit in criteria exceeded","No field found","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","Territory is not supported for the given module","Please check whether the input values are correct","invalid data","permission denied","Internal server error occurred.","duplicate data","required field not found","Layout doesn't contain the Pipeline","Pipeline doesn't contain the Stage","the id given seems to be invalid","record not deleted","record not deletable","Authentication failed","One of the expected parameter is missing","mandatory param missing","invalid query formed","id already converted","body","given id is invalid","Already a Mass Action scheduler is running for the given cvid","The record is in stop processing","The record is in blue print","no permission to perform an action on this record","Record count exceeded","record not approved","no record found to update","Field Edit Permission not given","Customview not accessible","Empty response","give contact id is mismatched with the data","give account id is mismatched with the data","Territory id which you are trying to remove was system assigned"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.share_records.SharedThrough":{"module_1":{"lookup":true,"structure_name":"com.zoho.crm.api.modules.Module","name":"module","type":"com.zoho.crm.api.modules.Module"},"entity_name":{"name":"entity_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.assignment_rules.GetAssignmentRuleParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.related_records.DelinkRecordsParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.record.MassUpdateSuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"job_id","type":"String"},{"name":"id","type":"Long"},{"name":"Modified_Time","type":"DateTime"},{"name":"Created_Time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},{"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"}],"name":"details","type":"Map"},"message":{"values":["record updated","mass update scheduled successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.email_templates.GetEmailTemplatebyIDParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.fields.Unique":{"casesensitive":{"name":"casesensitive","type":"String"}},"com.zoho.crm.api.fields.Currency":{"rounding_option":{"name":"rounding_option","type":"String"},"precision":{"name":"precision","type":"Integer"}},"com.zoho.crm.api.record.BodyWrapper":{"wf_trigger":{"name":"wf_trigger","type":"String"},"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","max-length":100,"type":"List","required":true,"min-length":1},"lar_id":{"name":"lar_id","type":"String"},"trigger":{"name":"trigger","type":"List"},"duplicate_check_fields":{"name":"duplicate_check_fields","type":"List"}},"com.zoho.crm.api.files.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.record.GetRecordsParam":{"cvid":{"name":"cvid","type":"String"},"per_page":{"name":"per_page","type":"Integer"},"sort_by":{"name":"sort_by","type":"String"},"endDateTime":{"name":"endDateTime","type":"DateTime"},"uid":{"name":"uid","type":"String"},"approved":{"name":"approved","type":"String"},"startDateTime":{"name":"startDateTime","type":"DateTime"},"include_child":{"name":"include_child","type":"String"},"converted":{"name":"converted","type":"String"},"ids":{"name":"ids","type":"Long","required":true},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"},"sort_order":{"name":"sort_order","type":"String"},"territory_id":{"name":"territory_id","type":"String"}},"com.zoho.crm.api.attachments.GetAttachmentsParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.record.MassUpdateActionHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.MassUpdateActionWrapper"],"interface":true},"com.zoho.crm.api.record.RecordCountParam":{"phone":{"name":"phone","type":"String"},"criteria":{"name":"criteria","type":"String"},"word":{"name":"word","type":"String"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.variable_groups.ResponseWrapper":{"variable_groups":{"structure_name":"com.zoho.crm.api.variable_groups.VariableGroup","name":"variable_groups","type":"List"}},"com.zoho.crm.api.wizards.APIException":{"code":{"values":["INVALID_DATA","INTERNAL_ERROR","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"param_name","type":"String"},{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Invalid Wizard ID","the module name given seems to be invalid","feature not available in this edition","permission denied","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.layouts.Layout":{"created_time":{"name":"created_time","type":"DateTime"},"convert_mapping":{"name":"convert_mapping","type":"Map"},"visible":{"name":"visible","type":"Boolean"},"created_for":{"structure_name":"com.zoho.crm.api.users.User","name":"created_for","type":"com.zoho.crm.api.users.User"},"profiles":{"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"sections":{"structure_name":"com.zoho.crm.api.layouts.Section","name":"sections","type":"List"},"display_type":{"name":"display_type","type":"Integer"},"show_business_card":{"name":"show_business_card","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"status":{"name":"status","type":"Integer"}},"com.zoho.crm.api.blue_print.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["transition updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notes.ResponseHandler":{"classes":["com.zoho.crm.api.notes.APIException","com.zoho.crm.api.notes.ResponseWrapper"],"interface":true},"com.zoho.crm.api.custom_views.ResponseHandler":{"classes":["com.zoho.crm.api.custom_views.ResponseWrapper","com.zoho.crm.api.custom_views.APIException"],"interface":true},"com.zoho.crm.api.pipeline.CreatePipelinesParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.blue_print.Transition":{"next_transitions":{"lookup":true,"structure_name":"com.zoho.crm.api.blue_print.NextTransition","name":"next_transitions","type":"List"},"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"com.zoho.crm.api.record.Record","skip_mandatory":true},"next_field_value":{"name":"next_field_value","type":"String"},"name":{"name":"name","type":"String"},"criteria_matched":{"name":"criteria_matched","type":"Boolean"},"parent_transition":{"lookup":true,"structure_name":"com.zoho.crm.api.blue_print.Transition","name":"parent_transition","type":"com.zoho.crm.api.blue_print.Transition"},"id":{"name":"id","type":"Long"},"fields":{"lookup":true,"structure_name":"com.zoho.crm.api.blue_print.Field","name":"fields","type":"List"},"type":{"name":"type","type":"String"},"criteria_message":{"name":"criteria_message","type":"String"},"percent_partial_save":{"name":"percent_partial_save","type":"Double"},"execution_time":{"name":"execution_time","type":"DateTime"}},"com.zoho.crm.api.assignment_rules.ResponseHandler":{"classes":["com.zoho.crm.api.assignment_rules.ResponseWrapper","com.zoho.crm.api.assignment_rules.APIException"],"interface":true},"com.zoho.crm.api.tags.Info":{"count":{"name":"count","type":"Integer"},"allowed_count":{"name":"allowed_count","type":"Integer"}},"com.zoho.crm.api.org.ResponseWrapper":{"org":{"structure_name":"com.zoho.crm.api.org.Org","name":"org","type":"List"}},"com.zoho.crm.api.tags.ActionHandler":{"classes":["com.zoho.crm.api.tags.ActionWrapper","com.zoho.crm.api.tags.APIException"],"interface":true},"com.zoho.crm.api.currencies.ActionHandler":{"classes":["com.zoho.crm.api.currencies.ActionWrapper","com.zoho.crm.api.currencies.APIException"],"interface":true},"com.zoho.crm.api.users.ActionWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.ActionResponse","name":"users","type":"List"}},"com.zoho.crm.api.query.BodyWrapper":{"select_query":{"name":"select_query","type":"String","required":true}},"com.zoho.crm.api.share_records.ShareRecord":{"share_related_records":{"name":"share_related_records","type":"Boolean"},"shared_through":{"lookup":true,"structure_name":"com.zoho.crm.api.share_records.SharedThrough","name":"shared_through","type":"com.zoho.crm.api.share_records.SharedThrough"},"shared_time":{"name":"shared_time","type":"DateTime"},"permission":{"required_in_update":true,"name":"permission","type":"String","required":true},"shared_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"shared_by","type":"com.zoho.crm.api.users.User"},"user":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","required_in_update":true,"name":"user","type":"com.zoho.crm.api.users.User","required":true}},"com.zoho.crm.api.share_records.APIException":{"code":{"values":["PATTERN_NOT_MATCHED","NO_PERMISSION","BAD_REQUEST","INVALID_MODULE","SHARE_LIMIT_EXCEEDED","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","ENTITY_ID_INVALID"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["permission denied - access the api","Scheduler is running","cannot share to the user","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid.","invalid oauth scope to access this URL","Please check if the URL trying to access is a correct one.","Permission is invalid","record is already visible to the user.","Cannot share a record to more than 10 users.","No sharing through this record is available to revoke.","ENTITY_ID_INVALID"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.MassUpdateActionResponse":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.MassUpdateSuccessResponse"],"interface":true},"com.zoho.crm.api.notification.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"structure_name":"com.zoho.crm.api.notification.Notification","name":"events","type":"List"},{"name":"resource_uri","type":"String"},{"name":"resource_id","type":"String"},{"name":"channel_id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["Successfully subscribed for actions-watch of the given module","Successfully un-subscribed from actions-watch","Successfully updated the subscribe details","Successfully removed the subscribe details"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.org.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","INVALID_DATA"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the request does not contain any file","invalid file type","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.pipeline.ResponseWrapper":{"pipeline":{"structure_name":"com.zoho.crm.api.pipeline.Pipeline","name":"pipeline","type":"List"}},"com.zoho.crm.api.pipeline.ActionWrapper":{"pipeline":{"structure_name":"com.zoho.crm.api.pipeline.ActionResponse","name":"pipeline","type":"List"}},"com.zoho.crm.api.bulk_read.Result":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"download_url":{"name":"download_url","type":"String"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.field_attachments.ResponseHandler":{"classes":["com.zoho.crm.api.field_attachments.FileBodyWrapper","com.zoho.crm.api.field_attachments.APIException"],"interface":true},"com.zoho.crm.api.tags.ActionResponse":{"classes":["com.zoho.crm.api.tags.SuccessResponse","com.zoho.crm.api.tags.APIException"],"interface":true},"com.zoho.crm.api.fields.AutoNumber":{"prefix":{"name":"prefix","type":"String"},"start_number":{"name":"start_number","type":"Integer"},"suffix":{"name":"suffix","type":"String"}},"com.zoho.crm.api.record.GetDeletedRecordsHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.profiles.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.Consent":{"owner":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Owner","type":"com.zoho.crm.api.users.User"},"contact_through_email":{"name":"Contact_Through_Email","type":"Boolean"},"data_processing_basis":{"name":"Data_Processing_Basis","type":"String"},"contact_through_social":{"name":"Contact_Through_Social","type":"Boolean"},"contact_through_survey":{"name":"Contact_Through_Survey","type":"Boolean"},"contact_through_phone":{"name":"Contact_Through_Phone","type":"Boolean"},"consent_remarks":{"name":"Consent_Remarks","type":"String"},"consent_date":{"name":"Consent_Date","type":"Date"},"mail_sent_time":{"name":"Mail_Sent_Time","type":"DateTime"},"consent_through":{"name":"Consent_Through","type":"String"}},"com.zoho.crm.api.modules.Territory":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"subordinates":{"name":"subordinates","type":"Boolean"}},"com.zoho.crm.api.bulk_write.Resource":{"field_mappings":{"structure_name":"com.zoho.crm.api.bulk_write.FieldMapping","name":"field_mappings","type":"List"},"code":{"name":"code","type":"String"},"file":{"structure_name":"com.zoho.crm.api.bulk_write.File","name":"file","type":"com.zoho.crm.api.bulk_write.File"},"module_1":{"structure_name":"com.zoho.crm.api.modules.Module","name":"module","type":"com.zoho.crm.api.modules.Module","required":true},"ignore_empty":{"name":"ignore_empty","type":"Boolean"},"file_id":{"name":"file_id","type":"String","required":true},"find_by":{"name":"find_by","type":"String"},"type":{"values":["data"],"name":"type","type":"com.zoho.crm.api.util.Choice","required":true},"status":{"values":["ADDED","IN PROGRESS","COMPLETED","SKIPPED","FAILED"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"duplicate_field":{"name":"duplicate_field","type":"String"},"action":{"values":["insert","update"],"name":"action","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"Modified_Time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},{"name":"Created_Time","type":"DateTime"},{"name":"id","type":"Long"},{"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"}],"name":"details","type":"Map"},"message":{"values":["record updated","record deleted","record added","photo uploaded successfully","Photo deleted","the territories data updated successfully","the territories are removed successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notes.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.share_records.BodyWrapper":{"share":{"structure_name":"com.zoho.crm.api.share_records.ShareRecord","name":"share","max-length":10,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.blue_print.BluePrint":{"data":{"structure_name":"com.zoho.crm.api.record.Record","required_in_update":true,"name":"data","type":"com.zoho.crm.api.record.Record","skip_mandatory":true},"process_info":{"lookup":true,"structure_name":"com.zoho.crm.api.blue_print.ProcessInfo","name":"process_info","type":"com.zoho.crm.api.blue_print.ProcessInfo"},"transition_id":{"required_in_update":true,"name":"transition_id","type":"Long"},"transitions":{"lookup":true,"structure_name":"com.zoho.crm.api.blue_print.Transition","name":"transitions","type":"List"}},"com.zoho.crm.api.field_attachments.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.layouts.GetLayoutParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.variables.ActionHandler":{"classes":["com.zoho.crm.api.variables.APIException","com.zoho.crm.api.variables.ActionWrapper"],"interface":true},"com.zoho.crm.api.custom_views.GetCustomViewsParam":{"per_page":{"name":"per_page","type":"Integer"},"module_1":{"name":"module","type":"String"},"page":{"name":"page","type":"Integer"}},"com.zoho.crm.api.taxes.APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"name","type":"String"},{"name":"value","type":"String"},{"name":"maximum_length","type":"Integer"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","required field not found","Sequence number out of range","Sequence number cannot be repeated in same request","Given ID does not exist","tax not deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.LeadConverter":{"notify_lead_owner":{"name":"notify_lead_owner","type":"Boolean"},"assign_to":{"name":"assign_to","type":"String"},"deals":{"structure_name":"com.zoho.crm.api.record.Record","module":"Deals","name":"Deals","type":"com.zoho.crm.api.record.Record"},"carry_over_tags":{"structure_name":"com.zoho.crm.api.record.CarryOverTags","name":"carry_over_tags","type":"com.zoho.crm.api.record.CarryOverTags"},"accounts":{"name":"Accounts","type":"String"},"overwrite":{"name":"overwrite","type":"Boolean"},"notify_new_entity_owner":{"name":"notify_new_entity_owner","type":"Boolean"},"contacts":{"name":"Contacts","type":"String"}},"com.zoho.crm.api.files.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.files.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.pipeline.ActionResponse":{"classes":["com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.SuccessResponse"],"interface":true},"com.zoho.crm.api.bulk_write.SuccessResponse":{"code":{"values":["FILE_UPLOAD_SUCCESS","SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"file_id","type":"Long"},{"name":"created_time","type":"DateTime"},{"name":"id","type":"Long"},{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"}],"name":"details","type":"Map"},"message":{"values":["file uploaded.","success"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}}}
data/src/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module ZCRMSDK
2
- VERSION = '2.0.0'
2
+ VERSION = '3.0.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ZCRMSDK
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ZOHO CRM API TEAM
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-03-23 00:00:00.000000000 Z
11
+ date: 2021-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi
@@ -98,14 +98,14 @@ dependencies:
98
98
  name: mysql2
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - '='
101
+ - - "~>"
102
102
  - !ruby/object:Gem::Version
103
103
  version: 0.5.2
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - '='
108
+ - - "~>"
109
109
  - !ruby/object:Gem::Version
110
110
  version: 0.5.2
111
111
  description: An API client for CRM customers, with which they can call ZOHO CRM APIs
@@ -123,6 +123,12 @@ files:
123
123
  - src/com/zoho/api/authenticator/store/token_store.rb
124
124
  - src/com/zoho/api/authenticator/token.rb
125
125
  - src/com/zoho/api/logger/sdk_logger.rb
126
+ - src/com/zoho/crm/api/assignment_rules/api_exception.rb
127
+ - src/com/zoho/crm/api/assignment_rules/assignment_rule.rb
128
+ - src/com/zoho/crm/api/assignment_rules/assignment_rules_operations.rb
129
+ - src/com/zoho/crm/api/assignment_rules/default_user.rb
130
+ - src/com/zoho/crm/api/assignment_rules/response_handler.rb
131
+ - src/com/zoho/crm/api/assignment_rules/response_wrapper.rb
126
132
  - src/com/zoho/crm/api/attachments/action_handler.rb
127
133
  - src/com/zoho/crm/api/attachments/action_response.rb
128
134
  - src/com/zoho/crm/api/attachments/action_wrapper.rb
@@ -138,6 +144,8 @@ files:
138
144
  - src/com/zoho/crm/api/blue_print/blue_print.rb
139
145
  - src/com/zoho/crm/api/blue_print/blue_print_operations.rb
140
146
  - src/com/zoho/crm/api/blue_print/body_wrapper.rb
147
+ - src/com/zoho/crm/api/blue_print/escalation.rb
148
+ - src/com/zoho/crm/api/blue_print/field.rb
141
149
  - src/com/zoho/crm/api/blue_print/next_transition.rb
142
150
  - src/com/zoho/crm/api/blue_print/process_info.rb
143
151
  - src/com/zoho/crm/api/blue_print/response_handler.rb
@@ -206,7 +214,7 @@ files:
206
214
  - src/com/zoho/crm/api/custom_views/range.rb
207
215
  - src/com/zoho/crm/api/custom_views/response_handler.rb
208
216
  - src/com/zoho/crm/api/custom_views/response_wrapper.rb
209
- - src/com/zoho/crm/api/custom_views/shared_details.rb
217
+ - src/com/zoho/crm/api/custom_views/shared_to.rb
210
218
  - src/com/zoho/crm/api/custom_views/translation.rb
211
219
  - src/com/zoho/crm/api/dc/au_datacenter.rb
212
220
  - src/com/zoho/crm/api/dc/cn_datacenter.rb
@@ -214,18 +222,34 @@ files:
214
222
  - src/com/zoho/crm/api/dc/eu_datacenter.rb
215
223
  - src/com/zoho/crm/api/dc/in_datacenter.rb
216
224
  - src/com/zoho/crm/api/dc/us_datacenter.rb
225
+ - src/com/zoho/crm/api/email_templates/api_exception.rb
226
+ - src/com/zoho/crm/api/email_templates/attachment.rb
227
+ - src/com/zoho/crm/api/email_templates/email_template.rb
228
+ - src/com/zoho/crm/api/email_templates/email_templates_operations.rb
229
+ - src/com/zoho/crm/api/email_templates/response_handler.rb
230
+ - src/com/zoho/crm/api/email_templates/response_wrapper.rb
217
231
  - src/com/zoho/crm/api/exception/sdk_exception.rb
232
+ - src/com/zoho/crm/api/field_attachments/api_exception.rb
233
+ - src/com/zoho/crm/api/field_attachments/body_wrapper.rb
234
+ - src/com/zoho/crm/api/field_attachments/field_attachments_operations.rb
235
+ - src/com/zoho/crm/api/field_attachments/file_body_wrapper.rb
236
+ - src/com/zoho/crm/api/field_attachments/response_handler.rb
218
237
  - src/com/zoho/crm/api/fields/api_exception.rb
219
238
  - src/com/zoho/crm/api/fields/association_details.rb
220
239
  - src/com/zoho/crm/api/fields/auto_number.rb
221
240
  - src/com/zoho/crm/api/fields/crypt.rb
222
241
  - src/com/zoho/crm/api/fields/currency.rb
242
+ - src/com/zoho/crm/api/fields/external.rb
223
243
  - src/com/zoho/crm/api/fields/field.rb
224
244
  - src/com/zoho/crm/api/fields/fields_operations.rb
225
245
  - src/com/zoho/crm/api/fields/formula.rb
246
+ - src/com/zoho/crm/api/fields/history_tracking.rb
226
247
  - src/com/zoho/crm/api/fields/lookup_field.rb
248
+ - src/com/zoho/crm/api/fields/maps.rb
227
249
  - src/com/zoho/crm/api/fields/module.rb
250
+ - src/com/zoho/crm/api/fields/multi_module_lookup.rb
228
251
  - src/com/zoho/crm/api/fields/multi_select_lookup.rb
252
+ - src/com/zoho/crm/api/fields/multi_user_lookup.rb
229
253
  - src/com/zoho/crm/api/fields/pick_list_value.rb
230
254
  - src/com/zoho/crm/api/fields/private.rb
231
255
  - src/com/zoho/crm/api/fields/related_details.rb
@@ -246,6 +270,11 @@ files:
246
270
  - src/com/zoho/crm/api/header.rb
247
271
  - src/com/zoho/crm/api/header_map.rb
248
272
  - src/com/zoho/crm/api/initializer.rb
273
+ - src/com/zoho/crm/api/inventory_templates/api_exception.rb
274
+ - src/com/zoho/crm/api/inventory_templates/inventory_template.rb
275
+ - src/com/zoho/crm/api/inventory_templates/inventory_templates_operations.rb
276
+ - src/com/zoho/crm/api/inventory_templates/response_handler.rb
277
+ - src/com/zoho/crm/api/inventory_templates/response_wrapper.rb
249
278
  - src/com/zoho/crm/api/layouts/api_exception.rb
250
279
  - src/com/zoho/crm/api/layouts/layout.rb
251
280
  - src/com/zoho/crm/api/layouts/layouts_operations.rb
@@ -291,6 +320,7 @@ files:
291
320
  - src/com/zoho/crm/api/org/action_response.rb
292
321
  - src/com/zoho/crm/api/org/api_exception.rb
293
322
  - src/com/zoho/crm/api/org/file_body_wrapper.rb
323
+ - src/com/zoho/crm/api/org/hierarchy_preference.rb
294
324
  - src/com/zoho/crm/api/org/license_details.rb
295
325
  - src/com/zoho/crm/api/org/org.rb
296
326
  - src/com/zoho/crm/api/org/org_operations.rb
@@ -299,8 +329,27 @@ files:
299
329
  - src/com/zoho/crm/api/org/success_response.rb
300
330
  - src/com/zoho/crm/api/param.rb
301
331
  - src/com/zoho/crm/api/parameter_map.rb
332
+ - src/com/zoho/crm/api/pipeline/action_handler.rb
333
+ - src/com/zoho/crm/api/pipeline/action_response.rb
334
+ - src/com/zoho/crm/api/pipeline/action_wrapper.rb
335
+ - src/com/zoho/crm/api/pipeline/api_exception.rb
336
+ - src/com/zoho/crm/api/pipeline/body_wrapper.rb
337
+ - src/com/zoho/crm/api/pipeline/forecast_category.rb
338
+ - src/com/zoho/crm/api/pipeline/pick_list_value.rb
339
+ - src/com/zoho/crm/api/pipeline/pipeline.rb
340
+ - src/com/zoho/crm/api/pipeline/pipeline_operations.rb
341
+ - src/com/zoho/crm/api/pipeline/response_handler.rb
342
+ - src/com/zoho/crm/api/pipeline/response_wrapper.rb
343
+ - src/com/zoho/crm/api/pipeline/stage.rb
344
+ - src/com/zoho/crm/api/pipeline/success_response.rb
345
+ - src/com/zoho/crm/api/pipeline/transfer_action_handler.rb
346
+ - src/com/zoho/crm/api/pipeline/transfer_action_response.rb
347
+ - src/com/zoho/crm/api/pipeline/transfer_action_wrapper.rb
348
+ - src/com/zoho/crm/api/pipeline/transfer_and_delete_wrapper.rb
349
+ - src/com/zoho/crm/api/pipeline/transfer_pipe_line.rb
302
350
  - src/com/zoho/crm/api/profiles/api_exception.rb
303
351
  - src/com/zoho/crm/api/profiles/category.rb
352
+ - src/com/zoho/crm/api/profiles/default_view.rb
304
353
  - src/com/zoho/crm/api/profiles/permission_detail.rb
305
354
  - src/com/zoho/crm/api/profiles/profile.rb
306
355
  - src/com/zoho/crm/api/profiles/profiles_operations.rb
@@ -324,6 +373,8 @@ files:
324
373
  - src/com/zoho/crm/api/record/convert_action_response.rb
325
374
  - src/com/zoho/crm/api/record/convert_action_wrapper.rb
326
375
  - src/com/zoho/crm/api/record/convert_body_wrapper.rb
376
+ - src/com/zoho/crm/api/record/count_handler.rb
377
+ - src/com/zoho/crm/api/record/count_wrapper.rb
327
378
  - src/com/zoho/crm/api/record/criteria.rb
328
379
  - src/com/zoho/crm/api/record/deleted_record.rb
329
380
  - src/com/zoho/crm/api/record/deleted_records_handler.rb
@@ -333,8 +384,8 @@ files:
333
384
  - src/com/zoho/crm/api/record/file_body_wrapper.rb
334
385
  - src/com/zoho/crm/api/record/file_details.rb
335
386
  - src/com/zoho/crm/api/record/file_handler.rb
387
+ - src/com/zoho/crm/api/record/image_upload.rb
336
388
  - src/com/zoho/crm/api/record/info.rb
337
- - src/com/zoho/crm/api/record/inventory_line_items.rb
338
389
  - src/com/zoho/crm/api/record/lead_converter.rb
339
390
  - src/com/zoho/crm/api/record/line_item_product.rb
340
391
  - src/com/zoho/crm/api/record/line_tax.rb
@@ -347,8 +398,12 @@ files:
347
398
  - src/com/zoho/crm/api/record/mass_update_response_handler.rb
348
399
  - src/com/zoho/crm/api/record/mass_update_response_wrapper.rb
349
400
  - src/com/zoho/crm/api/record/mass_update_success_response.rb
401
+ - src/com/zoho/crm/api/record/mass_update_territory.rb
402
+ - src/com/zoho/crm/api/record/multi_select_lookup.rb
403
+ - src/com/zoho/crm/api/record/multi_select_picklist.rb
350
404
  - src/com/zoho/crm/api/record/options.rb
351
405
  - src/com/zoho/crm/api/record/participants.rb
406
+ - src/com/zoho/crm/api/record/price_book.rb
352
407
  - src/com/zoho/crm/api/record/pricing_details.rb
353
408
  - src/com/zoho/crm/api/record/record.rb
354
409
  - src/com/zoho/crm/api/record/record_operations.rb
@@ -359,7 +414,10 @@ files:
359
414
  - src/com/zoho/crm/api/record/response_wrapper.rb
360
415
  - src/com/zoho/crm/api/record/success_response.rb
361
416
  - src/com/zoho/crm/api/record/successful_convert.rb
417
+ - src/com/zoho/crm/api/record/tax.rb
362
418
  - src/com/zoho/crm/api/record/territory.rb
419
+ - src/com/zoho/crm/api/record/widget.rb
420
+ - src/com/zoho/crm/api/record/wizard.rb
363
421
  - src/com/zoho/crm/api/related_lists/api_exception.rb
364
422
  - src/com/zoho/crm/api/related_lists/related_list.rb
365
423
  - src/com/zoho/crm/api/related_lists/related_lists_operations.rb
@@ -382,6 +440,20 @@ files:
382
440
  - src/com/zoho/crm/api/roles/role.rb
383
441
  - src/com/zoho/crm/api/roles/roles_operations.rb
384
442
  - src/com/zoho/crm/api/sdk_config.rb
443
+ - src/com/zoho/crm/api/send_mail/action_handler.rb
444
+ - src/com/zoho/crm/api/send_mail/action_response.rb
445
+ - src/com/zoho/crm/api/send_mail/action_wrapper.rb
446
+ - src/com/zoho/crm/api/send_mail/api_exception.rb
447
+ - src/com/zoho/crm/api/send_mail/body_wrapper.rb
448
+ - src/com/zoho/crm/api/send_mail/data_subject_request.rb
449
+ - src/com/zoho/crm/api/send_mail/inventory_details.rb
450
+ - src/com/zoho/crm/api/send_mail/mail.rb
451
+ - src/com/zoho/crm/api/send_mail/response_handler.rb
452
+ - src/com/zoho/crm/api/send_mail/response_wrapper.rb
453
+ - src/com/zoho/crm/api/send_mail/send_mail_operations.rb
454
+ - src/com/zoho/crm/api/send_mail/success_response.rb
455
+ - src/com/zoho/crm/api/send_mail/template.rb
456
+ - src/com/zoho/crm/api/send_mail/user_address.rb
385
457
  - src/com/zoho/crm/api/share_records/action_handler.rb
386
458
  - src/com/zoho/crm/api/share_records/action_response.rb
387
459
  - src/com/zoho/crm/api/share_records/action_wrapper.rb
@@ -478,12 +550,25 @@ files:
478
550
  - src/com/zoho/crm/api/variables/success_response.rb
479
551
  - src/com/zoho/crm/api/variables/variable.rb
480
552
  - src/com/zoho/crm/api/variables/variables_operations.rb
553
+ - src/com/zoho/crm/api/wizards/api_exception.rb
554
+ - src/com/zoho/crm/api/wizards/button.rb
555
+ - src/com/zoho/crm/api/wizards/chart_data.rb
556
+ - src/com/zoho/crm/api/wizards/connection.rb
557
+ - src/com/zoho/crm/api/wizards/container.rb
558
+ - src/com/zoho/crm/api/wizards/node.rb
559
+ - src/com/zoho/crm/api/wizards/response_handler.rb
560
+ - src/com/zoho/crm/api/wizards/response_wrapper.rb
561
+ - src/com/zoho/crm/api/wizards/screen.rb
562
+ - src/com/zoho/crm/api/wizards/segment.rb
563
+ - src/com/zoho/crm/api/wizards/transition.rb
564
+ - src/com/zoho/crm/api/wizards/wizard.rb
565
+ - src/com/zoho/crm/api/wizards/wizards_operations.rb
481
566
  - src/resources/JSONDetails.json
482
567
  - src/version.rb
483
568
  homepage: https://www.zoho.com/crm/
484
569
  licenses: []
485
570
  metadata:
486
- source_code_uri: https://github.com/zoho/zohocrm-ruby-sdk
571
+ source_code_uri: https://github.com/zoho/zohocrm-ruby-sdk-2.1
487
572
  post_install_message:
488
573
  rdoc_options: []
489
574
  require_paths:
@@ -1,235 +0,0 @@
1
- require_relative '../record/record'
2
- require_relative '../util/model'
3
-
4
- module Record
5
- class InventoryLineItems < Record
6
- include Util::Model
7
-
8
- # Creates an instance of InventoryLineItems
9
- def initialize
10
- super
11
- end
12
-
13
- # The method to get the product
14
- # @return An instance of LineItemProduct
15
-
16
- def product
17
- get_key_value('product')
18
- end
19
-
20
- # The method to set the value to product
21
- # @param product [LineItemProduct] An instance of LineItemProduct
22
-
23
- def product=(product)
24
- if product!=nil and !product.is_a? LineItemProduct
25
- raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: product EXPECTED TYPE: LineItemProduct', nil, nil)
26
- end
27
- add_key_value('product', product)
28
- end
29
-
30
- # The method to get the quantity
31
- # @return An instance of Float
32
-
33
- def quantity
34
- get_key_value('quantity')
35
- end
36
-
37
- # The method to set the value to quantity
38
- # @param quantity [Float] An instance of Float
39
-
40
- def quantity=(quantity)
41
- if quantity!=nil and !quantity.is_a? Float
42
- raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: quantity EXPECTED TYPE: Float', nil, nil)
43
- end
44
- add_key_value('quantity', quantity)
45
- end
46
-
47
- # The method to get the discount
48
- # @return A String value
49
-
50
- def discount
51
- get_key_value('Discount')
52
- end
53
-
54
- # The method to set the value to discount
55
- # @param discount [String] A String
56
-
57
- def discount=(discount)
58
- if discount!=nil and !discount.is_a? String
59
- raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: discount EXPECTED TYPE: String', nil, nil)
60
- end
61
- add_key_value('Discount', discount)
62
- end
63
-
64
- # The method to get the total_after_discount
65
- # @return An instance of Float
66
-
67
- def total_after_discount
68
- get_key_value('total_after_discount')
69
- end
70
-
71
- # The method to set the value to total_after_discount
72
- # @param total_after_discount [Float] An instance of Float
73
-
74
- def total_after_discount=(total_after_discount)
75
- if total_after_discount!=nil and !total_after_discount.is_a? Float
76
- raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: total_after_discount EXPECTED TYPE: Float', nil, nil)
77
- end
78
- add_key_value('total_after_discount', total_after_discount)
79
- end
80
-
81
- # The method to get the net_total
82
- # @return An instance of Float
83
-
84
- def net_total
85
- get_key_value('net_total')
86
- end
87
-
88
- # The method to set the value to net_total
89
- # @param net_total [Float] An instance of Float
90
-
91
- def net_total=(net_total)
92
- if net_total!=nil and !net_total.is_a? Float
93
- raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: net_total EXPECTED TYPE: Float', nil, nil)
94
- end
95
- add_key_value('net_total', net_total)
96
- end
97
-
98
- # The method to get the book
99
- # @return An instance of Float
100
-
101
- def book
102
- get_key_value('book')
103
- end
104
-
105
- # The method to set the value to book
106
- # @param book [Float] An instance of Float
107
-
108
- def book=(book)
109
- if book!=nil and !book.is_a? Float
110
- raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: book EXPECTED TYPE: Float', nil, nil)
111
- end
112
- add_key_value('book', book)
113
- end
114
-
115
- # The method to get the tax
116
- # @return An instance of Float
117
-
118
- def tax
119
- get_key_value('Tax')
120
- end
121
-
122
- # The method to set the value to tax
123
- # @param tax [Float] An instance of Float
124
-
125
- def tax=(tax)
126
- if tax!=nil and !tax.is_a? Float
127
- raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: tax EXPECTED TYPE: Float', nil, nil)
128
- end
129
- add_key_value('Tax', tax)
130
- end
131
-
132
- # The method to get the list_price
133
- # @return An instance of Float
134
-
135
- def list_price
136
- get_key_value('list_price')
137
- end
138
-
139
- # The method to set the value to list_price
140
- # @param list_price [Float] An instance of Float
141
-
142
- def list_price=(list_price)
143
- if list_price!=nil and !list_price.is_a? Float
144
- raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: list_price EXPECTED TYPE: Float', nil, nil)
145
- end
146
- add_key_value('list_price', list_price)
147
- end
148
-
149
- # The method to get the unit_price
150
- # @return An instance of Float
151
-
152
- def unit_price
153
- get_key_value('unit_price')
154
- end
155
-
156
- # The method to set the value to unit_price
157
- # @param unit_price [Float] An instance of Float
158
-
159
- def unit_price=(unit_price)
160
- if unit_price!=nil and !unit_price.is_a? Float
161
- raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: unit_price EXPECTED TYPE: Float', nil, nil)
162
- end
163
- add_key_value('unit_price', unit_price)
164
- end
165
-
166
- # The method to get the quantity_in_stock
167
- # @return An instance of Float
168
-
169
- def quantity_in_stock
170
- get_key_value('quantity_in_stock')
171
- end
172
-
173
- # The method to set the value to quantity_in_stock
174
- # @param quantity_in_stock [Float] An instance of Float
175
-
176
- def quantity_in_stock=(quantity_in_stock)
177
- if quantity_in_stock!=nil and !quantity_in_stock.is_a? Float
178
- raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: quantity_in_stock EXPECTED TYPE: Float', nil, nil)
179
- end
180
- add_key_value('quantity_in_stock', quantity_in_stock)
181
- end
182
-
183
- # The method to get the total
184
- # @return An instance of Float
185
-
186
- def total
187
- get_key_value('total')
188
- end
189
-
190
- # The method to set the value to total
191
- # @param total [Float] An instance of Float
192
-
193
- def total=(total)
194
- if total!=nil and !total.is_a? Float
195
- raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: total EXPECTED TYPE: Float', nil, nil)
196
- end
197
- add_key_value('total', total)
198
- end
199
-
200
- # The method to get the product_description
201
- # @return A String value
202
-
203
- def product_description
204
- get_key_value('product_description')
205
- end
206
-
207
- # The method to set the value to product_description
208
- # @param product_description [String] A String
209
-
210
- def product_description=(product_description)
211
- if product_description!=nil and !product_description.is_a? String
212
- raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: product_description EXPECTED TYPE: String', nil, nil)
213
- end
214
- add_key_value('product_description', product_description)
215
- end
216
-
217
- # The method to get the line_tax
218
- # @return An instance of Array
219
-
220
- def line_tax
221
- get_key_value('line_tax')
222
- end
223
-
224
- # The method to set the value to line_tax
225
- # @param line_tax [Array] An instance of Array
226
-
227
- def line_tax=(line_tax)
228
- if line_tax!=nil and !line_tax.is_a? Array
229
- raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: line_tax EXPECTED TYPE: Array', nil, nil)
230
- end
231
- add_key_value('line_tax', line_tax)
232
- end
233
-
234
- end
235
- end