ZOHOCRMSDK2_0 1.0.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/src/ZOHOCRMSDK2_0.rb +6 -0
- data/src/com/zoho/api/authenticator/oauth_token.rb +86 -32
- data/src/com/zoho/api/authenticator/store/db_store.rb +71 -29
- data/src/com/zoho/api/authenticator/store/file_store.rb +95 -24
- data/src/com/zoho/api/authenticator/store/token_store.rb +7 -0
- data/src/com/zoho/api/logger/sdk_logger.rb +19 -9
- data/src/com/zoho/crm/api/contact_roles/api_exception.rb +4 -0
- data/src/com/zoho/crm/api/contact_roles/contact_role_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/contact_roles/contact_roles_operations.rb +118 -0
- data/src/com/zoho/crm/api/contact_roles/record_action_handler.rb +10 -0
- data/src/com/zoho/crm/api/contact_roles/record_action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/contact_roles/record_body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/contact_roles/record_response_handler.rb +10 -0
- data/src/com/zoho/crm/api/contact_roles/record_response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/dc/au_datacenter.rb +3 -3
- data/src/com/zoho/crm/api/dc/cn_datacenter.rb +3 -3
- data/src/com/zoho/crm/api/dc/datacenter.rb +3 -2
- data/src/com/zoho/crm/api/dc/eu_datacenter.rb +3 -3
- data/src/com/zoho/crm/api/dc/in_datacenter.rb +3 -3
- data/src/com/zoho/crm/api/dc/us_datacenter.rb +3 -3
- data/src/com/zoho/crm/api/initializer.rb +44 -16
- data/src/com/zoho/crm/api/record/record_operations.rb +198 -1
- data/src/com/zoho/crm/api/related_records/related_records_operations.rb +299 -40
- data/src/com/zoho/crm/api/request_proxy.rb +3 -4
- data/src/com/zoho/crm/api/sdk_config.rb +2 -68
- data/src/com/zoho/crm/api/util/api_http_connector.rb +6 -6
- data/src/com/zoho/crm/api/util/constants.rb +113 -16
- data/src/com/zoho/crm/api/util/converter.rb +21 -4
- data/src/com/zoho/crm/api/util/data_type_converter.rb +8 -2
- data/src/com/zoho/crm/api/util/form_data_converter.rb +4 -16
- data/src/com/zoho/crm/api/util/json_converter.rb +7 -9
- data/src/com/zoho/crm/api/util/module_fields_handler.rb +1 -1
- data/src/com/zoho/crm/api/util/utility.rb +197 -82
- data/src/resources/JSONDetails.json +1 -1
- data/src/version.rb +2 -2
- metadata +8 -2
@@ -106,13 +106,11 @@ module Util
|
|
106
106
|
|
107
107
|
if request_instance.is_a? Record::FileDetails
|
108
108
|
lower_case_key_name = key_name.downcase
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
field_value
|
115
|
-
end
|
109
|
+
if field_value.nil? || (field_value.is_a? (String) && field_value.downcase == "null")
|
110
|
+
request_json[lower_case_key_name] = nil
|
111
|
+
else
|
112
|
+
request_json[lower_case_key_name] = field_value
|
113
|
+
end
|
116
114
|
else
|
117
115
|
request_json[key_name] = set_data(member_detail, field_value)
|
118
116
|
end
|
@@ -706,9 +704,9 @@ module Util
|
|
706
704
|
member_value
|
707
705
|
end
|
708
706
|
|
709
|
-
def build_name(
|
707
|
+
def build_name(key_name)
|
710
708
|
sdk_name = ''
|
711
|
-
name_split =
|
709
|
+
name_split = key_name.to_s.split('_')
|
712
710
|
sdk_name = name_split[0].to_s.downcase
|
713
711
|
index = 1
|
714
712
|
|
@@ -51,7 +51,7 @@ module Util
|
|
51
51
|
def self.refresh_fields(module_api_name)
|
52
52
|
@@sync_lock.synchronize do
|
53
53
|
delete_fields(module_api_name)
|
54
|
-
Utility.
|
54
|
+
Utility.get_fields_info(module_api_name)
|
55
55
|
end
|
56
56
|
rescue SDKException => e
|
57
57
|
SDKLog::SDKLogger.severe(Constants::REFRESH_SINGLE_MODULE_FIELDS_ERROR + module_api_name, e)
|
@@ -22,29 +22,89 @@ module Util
|
|
22
22
|
|
23
23
|
@@apitype_vs_structurename = {}
|
24
24
|
|
25
|
-
@@api_supported_module ={}
|
26
|
-
|
27
25
|
@@new_file = false
|
28
26
|
|
29
27
|
@@get_modified_modules = false
|
30
28
|
|
31
|
-
@@
|
29
|
+
@@api_supported_module = {}
|
32
30
|
|
33
31
|
@@module_api_name = nil
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
32
|
+
|
33
|
+
@@force_refresh = false
|
34
|
+
def self.set_handler_api_path(module_api_name, handler_instance)
|
35
|
+
if handler_instance.nil?
|
36
|
+
return
|
37
|
+
end
|
38
|
+
api_path = handler_instance.api_path
|
39
|
+
if module_api_name.downcase == api_path.downcase
|
40
|
+
api_path_split = api_path.split('/')
|
41
|
+
api_path_split.each do |api_path_split|
|
42
|
+
split_lower = api_path_split[i].downcase
|
43
|
+
if split_lower == module_api_name.downcase
|
44
|
+
api_path_splits[i] = module_api_name
|
45
|
+
elsif Constants::DEFAULT_MODULENAME_VS_APINAME.key? split_lower && !Constants::DEFAULT_MODULENAME_VS_APINAME[split_lower].nil?
|
46
|
+
api_path_splits[i] = Constants::DEFAULT_MODULENAME_VS_APINAME[split_lower]
|
47
|
+
end
|
48
|
+
api_path = api_path_splits.join("/")
|
49
|
+
handler_instance.api_path = api_path
|
50
|
+
end
|
51
|
+
end
|
38
52
|
end
|
39
|
-
|
53
|
+
|
54
|
+
def self.file_exists_flow(module_api_name,record_field_details_path,last_modified_time)
|
40
55
|
@@sync_lock.synchronize do
|
41
|
-
|
42
|
-
|
43
|
-
|
56
|
+
initializer = Initializer.get_initializer
|
57
|
+
record_field_details_json = JSON.parse(File.read(record_field_details_path))
|
58
|
+
last_modified_time_exists = false
|
59
|
+
if record_field_details_json.key?(Constants::FIELDS_LAST_MODIFIED_TIME) && !record_field_details_json[Constants::FIELDS_LAST_MODIFIED_TIME].nil?
|
60
|
+
if get_current_time_in_millis - record_field_details_json[Constants::FIELDS_LAST_MODIFIED_TIME] > 3_600_000
|
61
|
+
last_modified_time_exists = true
|
62
|
+
end
|
63
|
+
end
|
64
|
+
if !record_field_details_json.key?(Constants::FIELDS_LAST_MODIFIED_TIME) || @@force_refresh
|
65
|
+
last_modified_time_exists = true
|
44
66
|
end
|
67
|
+
|
68
|
+
if initializer.sdk_config.auto_refresh_fields && !@@new_file && !@@get_modified_modules && last_modified_time_exists
|
69
|
+
@@get_modified_modules = true
|
70
|
+
last_modified_time = (record_field_details_json.key? Constants::FIELDS_LAST_MODIFIED_TIME) ? record_field_details_json[Constants::FIELDS_LAST_MODIFIED_TIME] : nil
|
71
|
+
modify_fields(record_field_details_path, last_modified_time)
|
72
|
+
@@get_modified_modules = false
|
73
|
+
elsif !initializer.sdk_config.auto_refresh_fields && @@force_refresh && !@@get_modified_modules
|
74
|
+
@@get_modified_modules = true
|
75
|
+
modify_fields(record_field_details_path, last_modified_time)
|
76
|
+
@@get_modified_modules = false
|
77
|
+
end
|
78
|
+
|
79
|
+
record_field_details_json = JSON.parse(File.read(record_field_details_path))
|
80
|
+
return if module_api_name.nil? || record_field_details_json.key?(module_api_name.downcase)
|
81
|
+
|
82
|
+
fill_data_type()
|
83
|
+
|
84
|
+
record_field_details_json[module_api_name.downcase] = {}
|
85
|
+
|
86
|
+
File.open(record_field_details_path, 'w') do |f|
|
87
|
+
f.write(record_field_details_json.to_json)
|
88
|
+
end
|
89
|
+
field_details = get_fields_details(module_api_name)
|
90
|
+
record_field_details_json = JSON.parse(File.read(record_field_details_path))
|
91
|
+
|
92
|
+
record_field_details_json[module_api_name.downcase] = field_details
|
93
|
+
|
94
|
+
File.open(record_field_details_path, 'w') do |f|
|
95
|
+
f.write(record_field_details_json.to_json)
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
def self.get_fields(module_api_name, handler_instance=nil)
|
101
|
+
@@sync_lock.synchronize do
|
102
|
+
@@module_api_name = module_api_name
|
103
|
+
get_fields_info(module_api_name,handler_instance)
|
45
104
|
end
|
46
105
|
end
|
47
|
-
|
106
|
+
|
107
|
+
def self.get_fields_info(module_api_name, handler_instance=nil)
|
48
108
|
require_relative '../initializer'
|
49
109
|
initializer = Initializer.get_initializer
|
50
110
|
record_field_details_path = nil
|
@@ -57,54 +117,18 @@ module Util
|
|
57
117
|
resoures_folder_path = initializer.resources_path + '/' + Constants::RESOURCES
|
58
118
|
|
59
119
|
Dir.mkdir resoures_folder_path unless File.exist? resoures_folder_path
|
60
|
-
record_field_details_path = get_record_json_file_path
|
61
|
-
|
120
|
+
record_field_details_path = get_record_json_file_path()
|
121
|
+
module_api_name = verify_module_api_name(module_api_name)
|
122
|
+
set_handler_api_path(module_api_name,handler_instance)
|
123
|
+
|
62
124
|
if File.exist? record_field_details_path
|
63
|
-
|
64
|
-
last_modified_time_exists = false
|
65
|
-
if @@force_refresh
|
66
|
-
if record_field_details_json.key?(Constants::FIELDS_LAST_MODIFIED_TIME) && !record_field_details_json[Constants::FIELDS_LAST_MODIFIED_TIME].nil?
|
67
|
-
if get_current_time_in_millis - record_field_details_json[Constants::FIELDS_LAST_MODIFIED_TIME] > 3_600_000
|
68
|
-
last_modified_time_exists = true
|
69
|
-
end
|
70
|
-
end
|
71
|
-
end
|
72
|
-
if initializer.sdk_config.auto_refresh_fields && !@@new_file && !@@get_modified_modules && last_modified_time_exists
|
73
|
-
@@get_modified_modules = true
|
74
|
-
last_modified_time = (record_field_details_json.key? Constants::FIELDS_LAST_MODIFIED_TIME) ? record_field_details_json[Constants::FIELDS_LAST_MODIFIED_TIME] : nil
|
75
|
-
modify_fields(record_field_details_path, last_modified_time)
|
76
|
-
@@get_modified_modules = false
|
77
|
-
elsif !initializer.sdk_config.auto_refresh_fields && @@force_refresh && !@@get_modified_modules
|
78
|
-
@@get_modified_modules = true
|
79
|
-
modify_fields(record_field_details_path, last_modified_time)
|
80
|
-
@@get_modified_modules = false
|
81
|
-
end
|
82
|
-
|
83
|
-
record_field_details_json = JSON.parse(File.read(record_field_details_path))
|
84
|
-
return if module_api_name.nil? || record_field_details_json.key?(module_api_name.downcase)
|
85
|
-
|
86
|
-
fill_data_type
|
87
|
-
|
88
|
-
record_field_details_json[module_api_name.downcase] = {}
|
89
|
-
|
90
|
-
File.open(record_field_details_path, 'w') do |f|
|
91
|
-
f.write(record_field_details_json.to_json)
|
92
|
-
end
|
93
|
-
field_details = get_fields_details(module_api_name)
|
94
|
-
record_field_details_json = JSON.parse(File.read(record_field_details_path))
|
95
|
-
|
96
|
-
record_field_details_json[module_api_name.downcase] = field_details
|
97
|
-
|
98
|
-
File.open(record_field_details_path, 'w') do |f|
|
99
|
-
f.write(record_field_details_json.to_json)
|
100
|
-
end
|
101
|
-
|
125
|
+
file_exists_flow(module_api_name,record_field_details_path,last_modified_time)
|
102
126
|
elsif initializer.sdk_config.auto_refresh_fields
|
103
127
|
@@new_file = true
|
104
|
-
fill_data_type
|
105
|
-
|
106
|
-
|
107
|
-
|
128
|
+
fill_data_type()
|
129
|
+
@@api_supported_module = @@api_supported_module.length == 0 ? get_modules(nil) : @@api_supported_module
|
130
|
+
|
131
|
+
record_field_details_json = File.exist? record_field_details_path ? JSON.parse(File.read(record_field_details_path)) : {}
|
108
132
|
|
109
133
|
record_field_details_json = { Constants::FIELDS_LAST_MODIFIED_TIME => get_current_time_in_millis }
|
110
134
|
@@api_supported_module.each_key do |module_name|
|
@@ -113,7 +137,7 @@ module Util
|
|
113
137
|
File.open(record_field_details_path, 'w') do |f|
|
114
138
|
f.write(record_field_details_json.to_json)
|
115
139
|
end
|
116
|
-
field_details = get_fields_details(module_name)
|
140
|
+
field_details = get_fields_details( @@api_supported_module[module_name][Constants::API_NAME])
|
117
141
|
record_field_details_json = JSON.parse(File.read(record_field_details_path))
|
118
142
|
record_field_details_json[module_name.downcase] = field_details
|
119
143
|
File.open(record_field_details_path, 'w') do |f|
|
@@ -131,7 +155,7 @@ module Util
|
|
131
155
|
modify_fields(record_field_details_path, last_modified_time)
|
132
156
|
@@get_modified_modules = false
|
133
157
|
else
|
134
|
-
fill_data_type
|
158
|
+
fill_data_type()
|
135
159
|
|
136
160
|
record_field_details_json = { module_api_name.downcase => {} }
|
137
161
|
|
@@ -183,9 +207,9 @@ module Util
|
|
183
207
|
end
|
184
208
|
|
185
209
|
def self.modify_fields(record_field_details_path, modified_time)
|
186
|
-
modified_modules =
|
210
|
+
modified_modules = get_modules(modified_time)
|
187
211
|
record_field_details_json = JSON.parse(File.open(record_field_details_path).read)
|
188
|
-
record_field_details_json[Constants::FIELDS_LAST_MODIFIED_TIME] = get_current_time_in_millis
|
212
|
+
record_field_details_json[Constants::FIELDS_LAST_MODIFIED_TIME] = get_current_time_in_millis()
|
189
213
|
File.open(record_field_details_path, 'w') do |f|
|
190
214
|
f.write(record_field_details_json.to_json)
|
191
215
|
end
|
@@ -201,10 +225,30 @@ module Util
|
|
201
225
|
f.write(record_field_details_json.to_json)
|
202
226
|
end
|
203
227
|
modified_modules.each_key do |module_api_name|
|
204
|
-
|
228
|
+
module_data = modified_modules[module_api_name]
|
229
|
+
get_fields_info(module_data[Constants::API_NAME])
|
205
230
|
end
|
206
231
|
end
|
207
232
|
|
233
|
+
def self.verify_module_api_name(module_api_name)
|
234
|
+
|
235
|
+
if !module_api_name.nil?
|
236
|
+
if Constants::DEFAULT_MODULENAME_VS_APINAME.key? (module_api_name.downcase) && !Constants::DEFAULT_MODULENAME_VS_APINAME[module_api_name.downcase].nil?
|
237
|
+
return Constants::DEFAULT_MODULENAME_VS_APINAME[module_api_name.downcase]
|
238
|
+
end
|
239
|
+
end
|
240
|
+
|
241
|
+
record_field_details_path = get_record_json_file_path()
|
242
|
+
|
243
|
+
if File.exist? record_field_details_path
|
244
|
+
fields_json = JSON.parse(File.open(record_field_details_path).read)
|
245
|
+
if fields_json.key? Constants::SDK_MODULE_METADATA and fields_json[Constants::SDK_MODULE_METADATA].key? module_api_name.downcase
|
246
|
+
return fields_json[Constants::SDK_MODULE_METADATA][module_api_name.downcase][Constants::API_NAME]
|
247
|
+
end
|
248
|
+
end
|
249
|
+
return module_api_name
|
250
|
+
end
|
251
|
+
|
208
252
|
def self.delete_fields(record_field_details_json, module_api_name)
|
209
253
|
subform_modules = []
|
210
254
|
|
@@ -224,8 +268,8 @@ module Util
|
|
224
268
|
end
|
225
269
|
end
|
226
270
|
|
227
|
-
def self.get_record_json_file_path
|
228
|
-
Converter.new(nil).get_record_json_file_path
|
271
|
+
def self.get_record_json_file_path()
|
272
|
+
Converter.new(nil).get_record_json_file_path()
|
229
273
|
end
|
230
274
|
|
231
275
|
def self.get_related_lists(related_module_name, module_api_name, common_api_handler)
|
@@ -241,13 +285,14 @@ module Util
|
|
241
285
|
resoures_folder_path = initializer.resources_path + '/' + Constants::RESOURCES
|
242
286
|
Dir.mkdir resoures_folder_path unless File.exist? resoures_folder_path
|
243
287
|
|
244
|
-
record_field_details_path = get_record_json_file_path
|
288
|
+
record_field_details_path = get_record_json_file_path()
|
245
289
|
if !File.exist?(record_field_details_path) || (File.exist?(record_field_details_path) && !(JSON.parse(File.read(record_field_details_path)).key? key))
|
246
290
|
is_new_data = true
|
247
291
|
related_list_values = get_related_list_details(module_api_name)
|
248
|
-
|
249
|
-
if File.exist? record_field_details_path
|
292
|
+
if File.exist? (record_field_details_path)
|
250
293
|
record_field_details_json = JSON.parse(File.read(record_field_details_path))
|
294
|
+
else
|
295
|
+
record_field_details_json = {}
|
251
296
|
end
|
252
297
|
record_field_details_json[key] = related_list_values
|
253
298
|
File.open(record_field_details_path, 'w') do |f|
|
@@ -265,6 +310,7 @@ module Util
|
|
265
310
|
end
|
266
311
|
rescue SDKException => e
|
267
312
|
SDKLog::SDKLogger.severe(Constants::EXCEPTION, e)
|
313
|
+
raise e
|
268
314
|
rescue StandardError => e
|
269
315
|
ex = SDKException.new(nil, Constants::EXCEPTION, nil, e)
|
270
316
|
SDKLog::SDKLogger.severe(Constants::EXCEPTION, ex)
|
@@ -318,11 +364,7 @@ module Util
|
|
318
364
|
error_response[Constants::STATUS] = data_object.status.value
|
319
365
|
error_response[Constants::MESSAGE] = data_object.message.value
|
320
366
|
error_response[Constants::DETAILS] = data_object.details
|
321
|
-
|
322
|
-
if @@module_api_name.downcase == module_api_name.downcase
|
323
|
-
raise exception
|
324
|
-
end
|
325
|
-
SDKLog::SDKLogger.severe(Constants::API_EXCEPTION,exception)
|
367
|
+
raise SDKException.new(Constants::API_EXCEPTION, nil, error_response)
|
326
368
|
end
|
327
369
|
else
|
328
370
|
error_response = {}
|
@@ -514,7 +556,7 @@ module Util
|
|
514
556
|
return
|
515
557
|
elsif (key_name.downcase == Constants::COMMENTS.downcase) && ((module_api_name == Constants::SOLUTIONS.downcase) || (module_api_name == Constants::CASES.downcase))
|
516
558
|
field_detail[Constants::NAME] = key_name
|
517
|
-
field_detail[Constants::TYPE] = Constants::
|
559
|
+
field_detail[Constants::TYPE] = Constants::LIST_NAMESPACE
|
518
560
|
field_detail[Constants::STRUCTURE_NAME] = Constants::COMMENTS_NAMESPACE
|
519
561
|
field_detail[Constants::LOOKUP] = true
|
520
562
|
return
|
@@ -561,7 +603,7 @@ module Util
|
|
561
603
|
field_detail[Constants::MODULE] = module_name
|
562
604
|
end
|
563
605
|
|
564
|
-
if data_type.downcase == Constants::LOOKUP.downcase
|
606
|
+
if data_type.downcase == Constants::LOOKUP.downcase
|
565
607
|
module_name = field_instance.lookup.module
|
566
608
|
if !module_name.nil? && (module_name.downcase != Constants::SE_MODULE.downcase)
|
567
609
|
field_detail[Constants::MODULE] = module_name
|
@@ -576,13 +618,8 @@ module Util
|
|
576
618
|
get_fields_info(module_name) if !module_name.nil? && !module_name.empty?
|
577
619
|
field_detail[Constants::NAME] = key_name
|
578
620
|
end
|
579
|
-
|
580
|
-
def self.get_modules
|
581
|
-
@@sync_lock.synchronize do
|
582
|
-
@@api_supported_module = get_modules_api_names(nil)
|
583
|
-
end
|
584
|
-
end
|
585
|
-
def self.get_modules_api_names(header)
|
621
|
+
|
622
|
+
def self.get_modules(header)
|
586
623
|
api_names = {}
|
587
624
|
header_map = HeaderMap.new
|
588
625
|
unless header.nil?
|
@@ -601,7 +638,12 @@ module Util
|
|
601
638
|
if response_object.is_a? Modules::ResponseWrapper
|
602
639
|
modules = response_object.modules
|
603
640
|
modules.each do |module_ins|
|
604
|
-
|
641
|
+
if module_ins.api_supported
|
642
|
+
module_details = {}
|
643
|
+
module_details[Constants::API_NAME]=module_ins.api_name
|
644
|
+
module_details[Constants::GENERATED_TYPE]=module_ins.generated_type.value
|
645
|
+
api_names[module_ins.api_name.downcase] =module_details
|
646
|
+
end
|
605
647
|
end
|
606
648
|
elsif response_object.is_a? Modules::APIException
|
607
649
|
error_response = {}
|
@@ -612,6 +654,15 @@ module Util
|
|
612
654
|
end
|
613
655
|
end
|
614
656
|
end
|
657
|
+
if header.nil?
|
658
|
+
begin
|
659
|
+
initializer = Initializer.get_initializer
|
660
|
+
resoures_folder_path = initializer.resources_path + '/' + Constants::RESOURCES
|
661
|
+
Dir.mkdir resoures_folder_path unless File.exist? resoures_folder_path
|
662
|
+
record_field_details_path = get_record_json_file_path()
|
663
|
+
write_module_meta_data(record_field_details_path, api_names)
|
664
|
+
end
|
665
|
+
end
|
615
666
|
api_names
|
616
667
|
end
|
617
668
|
|
@@ -633,6 +684,70 @@ module Util
|
|
633
684
|
false
|
634
685
|
end
|
635
686
|
|
687
|
+
def self.verify_photo_support(module_api_name)
|
688
|
+
@@sync_lock.synchronize do
|
689
|
+
begin
|
690
|
+
module_api_name = verify_module_api_name(module_api_name)
|
691
|
+
if Constants::PHOTO_SUPPORTED_MODULES.include? module_api_name.downcase
|
692
|
+
return true
|
693
|
+
end
|
694
|
+
modules = get_module_names()
|
695
|
+
|
696
|
+
if modules.key? module_api_name.downcase || !modules[module_api_name.downcase].nil?
|
697
|
+
module_meta_data = modules[module_api_name.downcase]
|
698
|
+
|
699
|
+
if module_meta_data.key? Constants::GENERATED_TYPE && module_meta_data[Constants::GENERATED_TYPE] != Constants::GENERATED_TYPE_CUSTOM
|
700
|
+
raise SDKException.new(Constants::UPLOAD_PHOTO_UNSUPPORTED_ERROR,Constants::UPLOAD_PHOTO_UNSUPPORTED_MESSAGE + module_api_name)
|
701
|
+
end
|
702
|
+
end
|
703
|
+
rescue SDKException => e
|
704
|
+
raise e
|
705
|
+
rescue StandardError => e
|
706
|
+
ex = SDKException.new(nil, Constants::EXCEPTION, nil, e)
|
707
|
+
SDKLog::SDKLogger.severe(Constants::EXCEPTION, ex)
|
708
|
+
raise ex
|
709
|
+
end
|
710
|
+
return true
|
711
|
+
end
|
712
|
+
end
|
713
|
+
|
714
|
+
def self.get_module_names()
|
715
|
+
module_data = {}
|
716
|
+
initializer = Initializer.get_initializer
|
717
|
+
resoures_folder_path = initializer.resources_path + '/' + Constants::RESOURCES
|
718
|
+
Dir.mkdir resoures_folder_path unless File.exist? resoures_folder_path
|
719
|
+
|
720
|
+
record_field_details_path = get_record_json_file_path()
|
721
|
+
|
722
|
+
call_get_modules = false
|
723
|
+
if File.exists? record_field_details_path
|
724
|
+
json = JSON.parse(File.read(record_field_details_path))
|
725
|
+
if !json.key? Constants::SDK_MODULE_METADATA
|
726
|
+
call_get_modules = true
|
727
|
+
elsif json[Constants::SDK_MODULE_METADATA].nil? || json[Constants::SDK_MODULE_METADATA].length == 0
|
728
|
+
call_get_modules = true
|
729
|
+
end
|
730
|
+
else
|
731
|
+
call_get_modules = true
|
732
|
+
end
|
733
|
+
if call_get_modules
|
734
|
+
module_data = get_modules(nil)
|
735
|
+
write_module_meta_data(record_field_details_path, module_data)
|
736
|
+
return module_data
|
737
|
+
end
|
738
|
+
record_field_details_json = JSON.parse(File.read(record_field_details_path))
|
739
|
+
module_data = record_field_details_json[Constants::SDK_MODULE_METADATA]
|
740
|
+
return module_data
|
741
|
+
end
|
742
|
+
|
743
|
+
def self.write_module_meta_data(record_field_details_path, module_data)
|
744
|
+
field_details_json = (File.exist? record_field_details_path) ? JSON.parse(File.read(record_field_details_path)):{}
|
745
|
+
field_details_json[Constants::SDK_MODULE_METADATA] = module_data
|
746
|
+
File.open(record_field_details_path, 'w') do |f|
|
747
|
+
f.write(field_details_json.to_json)
|
748
|
+
end
|
749
|
+
end
|
750
|
+
|
636
751
|
def self.get_related_list_details(module_api_name)
|
637
752
|
rlo = RelatedLists::RelatedListsOperations.new(module_api_name)
|
638
753
|
response = rlo.get_related_lists
|
@@ -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.record.UpdateRecordsHeader":{"X_external":{"name":"X-EXTERNAL","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.record.DeleteRecordHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"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","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.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.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.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"},"X_external":{"name":"X-EXTERNAL","type":"String"}},"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.record.SearchRecordsHeader":{"X_external":{"name":"X-EXTERNAL","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","interface":true,"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"},"X_external":{"name":"X-EXTERNAL","type":"String"}},"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.UpdateRecordHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"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.record.DeleteRecordsHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"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"},"X_external":{"name":"X-EXTERNAL","type":"String"}},"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.related_records.UpdateRelatedRecordHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"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.related_records.DelinkRecordHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"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.record.UpsertRecordsHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"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.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.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.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":"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.related_records.GetRelatedRecordHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"},"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"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"},"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":{"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.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.related_records.DelinkRecordsHeader":{"x_external":{"name":"X-EXTERNAL","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.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.contact_roles.RecordBodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.contact_roles.ContactRoleWrapper","name":"data","max-length":1,"type":"List","required":true,"min-length":1}},"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.related_records.DeleteRelatedRecordUsingExternalIDHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"}},"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.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.related_records.GetRelatedRecordsUsingExternalIDHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"},"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.notes.DeleteNotesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.record.DeleteRecordHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"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.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.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.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.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.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.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":"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.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.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.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.record.UpdateRecordUsingExternalIDHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.contact_roles.DeleteContactRolesParam":{"ids":{"name":"ids","type":"String"}},"com.zoho.crm.api.contact_roles.ContactRoleWrapper":{"contact_role":{"required_in_update":true,"name":"Contact_Role","type":"String"}},"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":"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.related_records.GetRelatedRecordsHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"},"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.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":"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.related_records.UpdateRelatedRecordUsingExternalIDHeader":{"x_external":{"name":"X-EXTERNAL","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.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.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.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.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.contact_roles.RecordActionHandler":{"classes":["com.zoho.crm.api.contact_roles.RecordActionWrapper","com.zoho.crm.api.contact_roles.APIException"],"interface":true},"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.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.related_records.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"External_Deal_ID","type":"String"}],"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.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":"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.related_records.GetRelatedRecordsUsingExternalIDParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"}},"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.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.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"},"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.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.record.CreateRecordsHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"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.related_records.DeleteRelatedRecordsUsingExternalIDParam":{"ids":{"name":"ids","type":"Long","required":true}},"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.record.Territory":{"include_child":{"name":"include_child","type":"Boolean"},"id":{"name":"id","type":"Long"}},"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"},"X_external":{"name":"X-EXTERNAL","type":"String"}},"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.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.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.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.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.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.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.fields.ResponseHandler":{"classes":["com.zoho.crm.api.fields.ResponseWrapper","com.zoho.crm.api.fields.APIException"],"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":{"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.related_records.DelinkRecordHeader":{"x_external":{"name":"X-EXTERNAL","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.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":"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.record.DeleteRecordsParam":{"wf_trigger":{"name":"wf_trigger","type":"Boolean"},"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.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.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.UpsertRecordsHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.contact_roles.RecordActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.contact_roles.ActionResponse","name":"data","max-length":100,"type":"List"}},"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.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.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.related_records.GetRelatedRecordUsingExternalIDHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"},"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"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.related_records.UpdateRelatedRecordsHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"}},"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.tags.RemoveTagsFromMultipleRecordsParam":{"ids":{"name":"ids","type":"Long","required":true},"tag_names":{"name":"tag_names","type":"String","required":true}},"com.zoho.crm.api.record.GetRecordUsingExternalIDParam":{"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.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"},"fields":{"name":"fields","type":"String"},"word":{"name":"word","type":"String"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.record.UpdateRecordsHeader":{"X_external":{"name":"X-EXTERNAL","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.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"},"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.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.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.contact_roles.RecordResponseWrapper":{"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.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.bulk_write.Result":{"download_url":{"name":"download_url","type":"String"}},"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.related_records.DeleteRelatedRecordsUsingExternalIDHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"}},"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.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.contact_roles.GetAllContactRolesOfDealParam":{"ids":{"name":"ids","type":"String"}},"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.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.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.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.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.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.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.BodyWrapper","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.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.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.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.RecordBodyWrapper","com.zoho.crm.api.contact_roles.BodyWrapper","com.zoho.crm.api.contact_roles.RecordActionWrapper","com.zoho.crm.api.contact_roles.ContactRoleWrapper","com.zoho.crm.api.contact_roles.RecordResponseWrapper","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.related_records.UpdateRelatedRecordsUsingExternalIDHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.record.GetRecordHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"},"X_external":{"name":"X-EXTERNAL","type":"String"}},"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.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.contact_roles.RecordResponseHandler":{"classes":["com.zoho.crm.api.contact_roles.RecordResponseWrapper","com.zoho.crm.api.contact_roles.APIException"],"interface":true},"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.record.DeleteRecordUsingExternalIDHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"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.record.DeleteRecordParam":{"wf_trigger":{"name":"wf_trigger","type":"Boolean"}},"com.zoho.crm.api.record.SearchRecordsHeader":{"X_external":{"name":"X-EXTERNAL","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.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.record.DeleteRecordUsingExternalIDParam":{"wf_trigger":{"name":"wf_trigger","type":"Boolean"}},"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.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.GetRecordUsingExternalIDHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"},"X_external":{"name":"X-EXTERNAL","type":"String"}},"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.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"},"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.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.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":{"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.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.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.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.files.ResponseHandler":{"classes":["com.zoho.crm.api.files.APIException","com.zoho.crm.api.files.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.bulk_write.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":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.record.UpdateRecordHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"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.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.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.notes.GetNoteHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime","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 value of the external field is invalid.","There is no data for the ID specified or there is no matching record in the given module.","The external field contains duplicate data.","The external ID of the lookup field or the Price Book is incorrect","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.record.DeleteRecordsHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"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.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":{"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.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.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.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.related_records.UpdateRelatedRecordHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"}},"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":["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.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.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.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.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":"String"},{"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"},{"name":"External_Contact_ID","type":"String"}],"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.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.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":"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.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"}}}
|