ZCRMSDK 1.0.4 → 3.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/ZCRMSDK.rb +447 -0
- data/src/com/zoho/api/authenticator/oauth_token.rb +272 -0
- data/src/com/zoho/api/authenticator/store/db_store.rb +191 -0
- data/src/com/zoho/api/authenticator/store/file_store.rb +235 -0
- data/src/com/zoho/api/authenticator/store/token_store.rb +33 -0
- data/src/com/zoho/api/authenticator/token.rb +10 -0
- data/src/com/zoho/api/logger/sdk_logger.rb +78 -0
- data/src/com/zoho/crm/api/assignment_rules/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/assignment_rules/assignment_rule.rb +215 -0
- data/src/com/zoho/crm/api/assignment_rules/assignment_rules_operations.rb +61 -0
- data/src/com/zoho/crm/api/assignment_rules/default_user.rb +80 -0
- data/src/com/zoho/crm/api/assignment_rules/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/assignment_rules/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/attachments/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/attachments/action_response.rb +10 -0
- data/src/com/zoho/crm/api/attachments/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/attachments/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/attachments/attachment.rb +405 -0
- data/src/com/zoho/crm/api/attachments/attachments_operations.rb +196 -0
- data/src/com/zoho/crm/api/attachments/file_body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/attachments/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/attachments/response_wrapper.rb +83 -0
- data/src/com/zoho/crm/api/attachments/success_response.rb +121 -0
- data/src/com/zoho/crm/api/blue_print/action_response.rb +10 -0
- data/src/com/zoho/crm/api/blue_print/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/blue_print/blue_print.rb +119 -0
- data/src/com/zoho/crm/api/blue_print/blue_print_operations.rb +67 -0
- data/src/com/zoho/crm/api/blue_print/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/blue_print/escalation.rb +80 -0
- data/src/com/zoho/crm/api/blue_print/field.rb +1127 -0
- data/src/com/zoho/crm/api/blue_print/next_transition.rb +118 -0
- data/src/com/zoho/crm/api/blue_print/process_info.rb +251 -0
- data/src/com/zoho/crm/api/blue_print/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/blue_print/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/blue_print/success_response.rb +121 -0
- data/src/com/zoho/crm/api/blue_print/transition.rb +271 -0
- data/src/com/zoho/crm/api/blue_print/validation_error.rb +137 -0
- data/src/com/zoho/crm/api/bulk_read/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/bulk_read/action_response.rb +10 -0
- data/src/com/zoho/crm/api/bulk_read/action_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/bulk_read/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/bulk_read/bulk_read_operations.rb +74 -0
- data/src/com/zoho/crm/api/bulk_read/call_back.rb +81 -0
- data/src/com/zoho/crm/api/bulk_read/criteria.rb +155 -0
- data/src/com/zoho/crm/api/bulk_read/file_body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/bulk_read/job_detail.rb +196 -0
- data/src/com/zoho/crm/api/bulk_read/query.rb +138 -0
- data/src/com/zoho/crm/api/bulk_read/request_wrapper.rb +100 -0
- data/src/com/zoho/crm/api/bulk_read/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/bulk_read/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/bulk_read/result.rb +137 -0
- data/src/com/zoho/crm/api/bulk_read/success_response.rb +121 -0
- data/src/com/zoho/crm/api/bulk_write/action_response.rb +10 -0
- data/src/com/zoho/crm/api/bulk_write/api_exception.rb +239 -0
- data/src/com/zoho/crm/api/bulk_write/bulk_write_operations.rb +112 -0
- data/src/com/zoho/crm/api/bulk_write/bulk_write_response.rb +216 -0
- data/src/com/zoho/crm/api/bulk_write/call_back.rb +81 -0
- data/src/com/zoho/crm/api/bulk_write/field_mapping.rb +156 -0
- data/src/com/zoho/crm/api/bulk_write/file.rb +157 -0
- data/src/com/zoho/crm/api/bulk_write/file_body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/bulk_write/request_wrapper.rb +119 -0
- data/src/com/zoho/crm/api/bulk_write/resource.rb +215 -0
- data/src/com/zoho/crm/api/bulk_write/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/bulk_write/response_wrapper.rb +10 -0
- data/src/com/zoho/crm/api/bulk_write/result.rb +61 -0
- data/src/com/zoho/crm/api/bulk_write/success_response.rb +121 -0
- data/src/com/zoho/crm/api/contact_roles/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/contact_roles/action_response.rb +10 -0
- data/src/com/zoho/crm/api/contact_roles/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/contact_roles/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/contact_roles/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/contact_roles/contact_role.rb +99 -0
- data/src/com/zoho/crm/api/contact_roles/contact_roles_operations.rb +161 -0
- data/src/com/zoho/crm/api/contact_roles/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/contact_roles/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/contact_roles/success_response.rb +121 -0
- data/src/com/zoho/crm/api/currencies/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/currencies/action_response.rb +10 -0
- data/src/com/zoho/crm/api/currencies/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/currencies/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/currencies/base_currency_action_handler.rb +10 -0
- data/src/com/zoho/crm/api/currencies/base_currency_action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/currencies/base_currency_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/currencies/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/currencies/currencies_operations.rb +156 -0
- data/src/com/zoho/crm/api/currencies/currency.rb +290 -0
- data/src/com/zoho/crm/api/currencies/format.rb +100 -0
- data/src/com/zoho/crm/api/currencies/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/currencies/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/currencies/success_response.rb +121 -0
- data/src/com/zoho/crm/api/custom_views/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/custom_views/criteria.rb +136 -0
- data/src/com/zoho/crm/api/custom_views/custom_view.rb +386 -0
- data/src/com/zoho/crm/api/custom_views/custom_views_operations.rb +75 -0
- data/src/com/zoho/crm/api/custom_views/info.rb +156 -0
- data/src/com/zoho/crm/api/custom_views/range.rb +80 -0
- data/src/com/zoho/crm/api/custom_views/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/custom_views/response_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/custom_views/shared_to.rb +118 -0
- data/src/com/zoho/crm/api/custom_views/translation.rb +118 -0
- data/src/com/zoho/crm/api/dc/au_datacenter.rb +18 -0
- data/src/com/zoho/crm/api/dc/cn_datacenter.rb +18 -0
- data/src/com/zoho/crm/api/dc/datacenter.rb +21 -0
- data/src/com/zoho/crm/api/dc/eu_datacenter.rb +18 -0
- data/src/com/zoho/crm/api/dc/in_datacenter.rb +18 -0
- data/src/com/zoho/crm/api/dc/us_datacenter.rb +18 -0
- data/src/com/zoho/crm/api/email_templates/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/email_templates/attachment.rb +118 -0
- data/src/com/zoho/crm/api/email_templates/email_template.rb +390 -0
- data/src/com/zoho/crm/api/email_templates/email_templates_operations.rb +61 -0
- data/src/com/zoho/crm/api/email_templates/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/email_templates/response_wrapper.rb +83 -0
- data/src/com/zoho/crm/api/exception/sdk_exception.rb +47 -0
- data/src/com/zoho/crm/api/field_attachments/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/field_attachments/body_wrapper.rb +62 -0
- data/src/com/zoho/crm/api/field_attachments/field_attachments_operations.rb +52 -0
- data/src/com/zoho/crm/api/field_attachments/file_body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/field_attachments/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/fields/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/fields/association_details.rb +80 -0
- data/src/com/zoho/crm/api/fields/auto_number.rb +99 -0
- data/src/com/zoho/crm/api/fields/crypt.rb +156 -0
- data/src/com/zoho/crm/api/fields/currency.rb +80 -0
- data/src/com/zoho/crm/api/fields/external.rb +99 -0
- data/src/com/zoho/crm/api/fields/field.rb +1110 -0
- data/src/com/zoho/crm/api/fields/fields_operations.rb +71 -0
- data/src/com/zoho/crm/api/fields/formula.rb +80 -0
- data/src/com/zoho/crm/api/fields/history_tracking.rb +80 -0
- data/src/com/zoho/crm/api/fields/lookup_field.rb +80 -0
- data/src/com/zoho/crm/api/fields/maps.rb +80 -0
- data/src/com/zoho/crm/api/fields/module.rb +157 -0
- data/src/com/zoho/crm/api/fields/multi_module_lookup.rb +99 -0
- data/src/com/zoho/crm/api/fields/multi_select_lookup.rb +175 -0
- data/src/com/zoho/crm/api/fields/multi_user_lookup.rb +175 -0
- data/src/com/zoho/crm/api/fields/pick_list_value.rb +194 -0
- data/src/com/zoho/crm/api/fields/private.rb +99 -0
- data/src/com/zoho/crm/api/fields/related_details.rb +156 -0
- data/src/com/zoho/crm/api/fields/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/fields/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/fields/tool_tip.rb +80 -0
- data/src/com/zoho/crm/api/fields/unique.rb +61 -0
- data/src/com/zoho/crm/api/fields/view_type.rb +118 -0
- data/src/com/zoho/crm/api/files/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/files/action_response.rb +10 -0
- data/src/com/zoho/crm/api/files/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/files/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/files/body_wrapper.rb +62 -0
- data/src/com/zoho/crm/api/files/file_body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/files/file_operations.rb +75 -0
- data/src/com/zoho/crm/api/files/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/files/success_response.rb +121 -0
- data/src/com/zoho/crm/api/header.rb +10 -0
- data/src/com/zoho/crm/api/header_map.rb +55 -0
- data/src/com/zoho/crm/api/initializer.rb +220 -0
- data/src/com/zoho/crm/api/inventory_templates/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/inventory_templates/inventory_template.rb +352 -0
- data/src/com/zoho/crm/api/inventory_templates/inventory_templates_operations.rb +82 -0
- data/src/com/zoho/crm/api/inventory_templates/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/inventory_templates/response_wrapper.rb +83 -0
- data/src/com/zoho/crm/api/layouts/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/layouts/layout.rb +310 -0
- data/src/com/zoho/crm/api/layouts/layouts_operations.rb +61 -0
- data/src/com/zoho/crm/api/layouts/properties.rb +100 -0
- data/src/com/zoho/crm/api/layouts/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/layouts/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/layouts/section.rb +252 -0
- data/src/com/zoho/crm/api/modules/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/modules/action_response.rb +10 -0
- data/src/com/zoho/crm/api/modules/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/modules/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/modules/argument.rb +80 -0
- data/src/com/zoho/crm/api/modules/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/modules/module.rb +939 -0
- data/src/com/zoho/crm/api/modules/modules_operations.rb +111 -0
- data/src/com/zoho/crm/api/modules/related_list_properties.rb +99 -0
- data/src/com/zoho/crm/api/modules/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/modules/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/modules/success_response.rb +121 -0
- data/src/com/zoho/crm/api/modules/territory.rb +99 -0
- data/src/com/zoho/crm/api/notes/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/notes/action_response.rb +10 -0
- data/src/com/zoho/crm/api/notes/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/notes/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/notes/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/notes/info.rb +118 -0
- data/src/com/zoho/crm/api/notes/note.rb +368 -0
- data/src/com/zoho/crm/api/notes/notes_operations.rb +219 -0
- data/src/com/zoho/crm/api/notes/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/notes/response_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/notes/success_response.rb +121 -0
- data/src/com/zoho/crm/api/notification/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/notification/action_response.rb +10 -0
- data/src/com/zoho/crm/api/notification/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/notification/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/notification/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/notification/info.rb +118 -0
- data/src/com/zoho/crm/api/notification/notification.rb +251 -0
- data/src/com/zoho/crm/api/notification/notification_operations.rb +164 -0
- data/src/com/zoho/crm/api/notification/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/notification/response_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/notification/success_response.rb +121 -0
- data/src/com/zoho/crm/api/org/action_response.rb +10 -0
- data/src/com/zoho/crm/api/org/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/org/file_body_wrapper.rb +62 -0
- data/src/com/zoho/crm/api/org/hierarchy_preference.rb +61 -0
- data/src/com/zoho/crm/api/org/license_details.rb +156 -0
- data/src/com/zoho/crm/api/org/org.rb +669 -0
- data/src/com/zoho/crm/api/org/org_operations.rb +49 -0
- data/src/com/zoho/crm/api/org/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/org/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/org/success_response.rb +121 -0
- data/src/com/zoho/crm/api/param.rb +10 -0
- data/src/com/zoho/crm/api/parameter_map.rb +54 -0
- data/src/com/zoho/crm/api/pipeline/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/pipeline/action_response.rb +10 -0
- data/src/com/zoho/crm/api/pipeline/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/pipeline/api_exception.rb +129 -0
- data/src/com/zoho/crm/api/pipeline/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/pipeline/forecast_category.rb +80 -0
- data/src/com/zoho/crm/api/pipeline/pick_list_value.rb +175 -0
- data/src/com/zoho/crm/api/pipeline/pipeline.rb +213 -0
- data/src/com/zoho/crm/api/pipeline/pipeline_operations.rb +165 -0
- data/src/com/zoho/crm/api/pipeline/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/pipeline/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/pipeline/stage.rb +80 -0
- data/src/com/zoho/crm/api/pipeline/success_response.rb +123 -0
- data/src/com/zoho/crm/api/pipeline/transfer_action_handler.rb +10 -0
- data/src/com/zoho/crm/api/pipeline/transfer_action_response.rb +10 -0
- data/src/com/zoho/crm/api/pipeline/transfer_action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/pipeline/transfer_and_delete_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/pipeline/transfer_pipe_line.rb +80 -0
- data/src/com/zoho/crm/api/profiles/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/profiles/category.rb +118 -0
- data/src/com/zoho/crm/api/profiles/default_view.rb +99 -0
- data/src/com/zoho/crm/api/profiles/permission_detail.rb +137 -0
- data/src/com/zoho/crm/api/profiles/profile.rb +328 -0
- data/src/com/zoho/crm/api/profiles/profiles_operations.rb +61 -0
- data/src/com/zoho/crm/api/profiles/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/profiles/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/profiles/section.rb +80 -0
- data/src/com/zoho/crm/api/query/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/query/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/query/query_operations.rb +35 -0
- data/src/com/zoho/crm/api/query/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/query/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/record/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/action_response.rb +10 -0
- data/src/com/zoho/crm/api/record/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record/api_exception.rb +145 -0
- data/src/com/zoho/crm/api/record/body_wrapper.rb +137 -0
- data/src/com/zoho/crm/api/record/carry_over_tags.rb +99 -0
- data/src/com/zoho/crm/api/record/comment.rb +118 -0
- data/src/com/zoho/crm/api/record/consent.rb +185 -0
- data/src/com/zoho/crm/api/record/convert_action_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/convert_action_response.rb +10 -0
- data/src/com/zoho/crm/api/record/convert_action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record/convert_body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/record/count_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/count_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record/criteria.rb +135 -0
- data/src/com/zoho/crm/api/record/deleted_record.rb +157 -0
- data/src/com/zoho/crm/api/record/deleted_records_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/deleted_records_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/record/download_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/field.rb +2109 -0
- data/src/com/zoho/crm/api/record/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/record/file_details.rb +327 -0
- data/src/com/zoho/crm/api/record/file_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/image_upload.rb +213 -0
- data/src/com/zoho/crm/api/record/info.rb +118 -0
- data/src/com/zoho/crm/api/record/lead_converter.rb +194 -0
- data/src/com/zoho/crm/api/record/line_item_product.rb +65 -0
- data/src/com/zoho/crm/api/record/line_tax.rb +137 -0
- data/src/com/zoho/crm/api/record/mass_update.rb +140 -0
- data/src/com/zoho/crm/api/record/mass_update_action_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/mass_update_action_response.rb +10 -0
- data/src/com/zoho/crm/api/record/mass_update_action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record/mass_update_body_wrapper.rb +156 -0
- data/src/com/zoho/crm/api/record/mass_update_response.rb +10 -0
- data/src/com/zoho/crm/api/record/mass_update_response_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/mass_update_response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record/mass_update_success_response.rb +121 -0
- data/src/com/zoho/crm/api/record/mass_update_territory.rb +80 -0
- data/src/com/zoho/crm/api/record/multi_select_lookup.rb +99 -0
- data/src/com/zoho/crm/api/record/multi_select_picklist.rb +80 -0
- data/src/com/zoho/crm/api/record/options.rb +10 -0
- data/src/com/zoho/crm/api/record/participants.rb +116 -0
- data/src/com/zoho/crm/api/record/price_book.rb +31 -0
- data/src/com/zoho/crm/api/record/pricing_details.rb +65 -0
- data/src/com/zoho/crm/api/record/record.rb +192 -0
- data/src/com/zoho/crm/api/record/record_operations.rb +847 -0
- data/src/com/zoho/crm/api/record/recurring_activity.rb +61 -0
- data/src/com/zoho/crm/api/record/remind_at.rb +61 -0
- data/src/com/zoho/crm/api/record/reminder.rb +80 -0
- data/src/com/zoho/crm/api/record/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/response_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/record/success_response.rb +161 -0
- data/src/com/zoho/crm/api/record/successful_convert.rb +101 -0
- data/src/com/zoho/crm/api/record/tax.rb +80 -0
- data/src/com/zoho/crm/api/record/territory.rb +138 -0
- data/src/com/zoho/crm/api/record/widget.rb +80 -0
- data/src/com/zoho/crm/api/record/wizard.rb +80 -0
- data/src/com/zoho/crm/api/related_lists/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/related_lists/related_list.rb +251 -0
- data/src/com/zoho/crm/api/related_lists/related_lists_operations.rb +61 -0
- data/src/com/zoho/crm/api/related_lists/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/related_lists/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/related_records/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/related_records/action_response.rb +10 -0
- data/src/com/zoho/crm/api/related_records/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/related_records/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/related_records/body_wrapper.rb +62 -0
- data/src/com/zoho/crm/api/related_records/file_body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/related_records/related_records_operations.rb +235 -0
- data/src/com/zoho/crm/api/related_records/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/related_records/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/related_records/success_response.rb +121 -0
- data/src/com/zoho/crm/api/request_proxy.rb +15 -0
- data/src/com/zoho/crm/api/roles/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/roles/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/roles/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/roles/role.rb +195 -0
- data/src/com/zoho/crm/api/roles/roles_operations.rb +47 -0
- data/src/com/zoho/crm/api/sdk_config.rb +12 -0
- data/src/com/zoho/crm/api/send_mail/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/send_mail/action_response.rb +10 -0
- data/src/com/zoho/crm/api/send_mail/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/send_mail/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/send_mail/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/send_mail/data_subject_request.rb +80 -0
- data/src/com/zoho/crm/api/send_mail/inventory_details.rb +100 -0
- data/src/com/zoho/crm/api/send_mail/mail.rb +423 -0
- data/src/com/zoho/crm/api/send_mail/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/send_mail/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/send_mail/send_mail_operations.rb +61 -0
- data/src/com/zoho/crm/api/send_mail/success_response.rb +121 -0
- data/src/com/zoho/crm/api/send_mail/template.rb +10 -0
- data/src/com/zoho/crm/api/send_mail/user_address.rb +137 -0
- data/src/com/zoho/crm/api/share_records/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/share_records/action_response.rb +10 -0
- data/src/com/zoho/crm/api/share_records/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/share_records/api_exception.rb +129 -0
- data/src/com/zoho/crm/api/share_records/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/share_records/delete_action_handler.rb +10 -0
- data/src/com/zoho/crm/api/share_records/delete_action_response.rb +10 -0
- data/src/com/zoho/crm/api/share_records/delete_action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/share_records/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/share_records/response_wrapper.rb +83 -0
- data/src/com/zoho/crm/api/share_records/share_record.rb +157 -0
- data/src/com/zoho/crm/api/share_records/share_records_operations.rb +128 -0
- data/src/com/zoho/crm/api/share_records/shared_through.rb +100 -0
- data/src/com/zoho/crm/api/share_records/success_response.rb +123 -0
- data/src/com/zoho/crm/api/tags/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/tags/action_response.rb +10 -0
- data/src/com/zoho/crm/api/tags/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/tags/api_exception.rb +131 -0
- data/src/com/zoho/crm/api/tags/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/tags/conflict_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/tags/count_handler.rb +10 -0
- data/src/com/zoho/crm/api/tags/count_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/tags/info.rb +80 -0
- data/src/com/zoho/crm/api/tags/merge_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/tags/record_action_handler.rb +10 -0
- data/src/com/zoho/crm/api/tags/record_action_response.rb +10 -0
- data/src/com/zoho/crm/api/tags/record_action_wrapper.rb +120 -0
- data/src/com/zoho/crm/api/tags/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/tags/response_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/tags/success_response.rb +123 -0
- data/src/com/zoho/crm/api/tags/tag.rb +176 -0
- data/src/com/zoho/crm/api/tags/tags_operations.rb +387 -0
- data/src/com/zoho/crm/api/taxes/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/taxes/action_response.rb +10 -0
- data/src/com/zoho/crm/api/taxes/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/taxes/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/taxes/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/taxes/preference.rb +80 -0
- data/src/com/zoho/crm/api/taxes/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/taxes/response_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/taxes/success_response.rb +121 -0
- data/src/com/zoho/crm/api/taxes/tax.rb +137 -0
- data/src/com/zoho/crm/api/taxes/taxes_operations.rb +136 -0
- data/src/com/zoho/crm/api/territories/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/territories/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/territories/response_wrapper.rb +83 -0
- data/src/com/zoho/crm/api/territories/territories_operations.rb +47 -0
- data/src/com/zoho/crm/api/territories/territory.rb +272 -0
- data/src/com/zoho/crm/api/user_signature.rb +27 -0
- data/src/com/zoho/crm/api/users/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/users/action_response.rb +10 -0
- data/src/com/zoho/crm/api/users/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/users/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/users/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/users/customize_info.rb +156 -0
- data/src/com/zoho/crm/api/users/info.rb +118 -0
- data/src/com/zoho/crm/api/users/request_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/users/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/users/response_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/users/shift.rb +80 -0
- data/src/com/zoho/crm/api/users/success_response.rb +121 -0
- data/src/com/zoho/crm/api/users/tab_theme.rb +80 -0
- data/src/com/zoho/crm/api/users/territory.rb +99 -0
- data/src/com/zoho/crm/api/users/theme.rb +156 -0
- data/src/com/zoho/crm/api/users/user.rb +730 -0
- data/src/com/zoho/crm/api/users/users_operations.rb +181 -0
- data/src/com/zoho/crm/api/util/api_http_connector.rb +112 -0
- data/src/com/zoho/crm/api/util/api_response.rb +16 -0
- data/src/com/zoho/crm/api/util/choice.rb +9 -0
- data/src/com/zoho/crm/api/util/common_api_handler.rb +237 -0
- data/src/com/zoho/crm/api/util/constants.rb +661 -0
- data/src/com/zoho/crm/api/util/converter.rb +236 -0
- data/src/com/zoho/crm/api/util/data_type_converter.rb +168 -0
- data/src/com/zoho/crm/api/util/downloader.rb +83 -0
- data/src/com/zoho/crm/api/util/form_data_converter.rb +156 -0
- data/src/com/zoho/crm/api/util/header_param_validator.rb +55 -0
- data/src/com/zoho/crm/api/util/json_converter.rb +724 -0
- data/src/com/zoho/crm/api/util/model.rb +5 -0
- data/src/com/zoho/crm/api/util/module_fields_handler.rb +78 -0
- data/src/com/zoho/crm/api/util/stream_wrapper.rb +37 -0
- data/src/com/zoho/crm/api/util/utility.rb +914 -0
- data/src/com/zoho/crm/api/variable_groups/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/variable_groups/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/variable_groups/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/variable_groups/variable_group.rb +137 -0
- data/src/com/zoho/crm/api/variable_groups/variable_groups_operations.rb +66 -0
- data/src/com/zoho/crm/api/variables/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/variables/action_response.rb +10 -0
- data/src/com/zoho/crm/api/variables/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/variables/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/variables/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/variables/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/variables/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/variables/success_response.rb +121 -0
- data/src/com/zoho/crm/api/variables/variable.rb +173 -0
- data/src/com/zoho/crm/api/variables/variables_operations.rb +241 -0
- data/src/com/zoho/crm/api/wizards/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/wizards/button.rb +252 -0
- data/src/com/zoho/crm/api/wizards/chart_data.rb +118 -0
- data/src/com/zoho/crm/api/wizards/connection.rb +80 -0
- data/src/com/zoho/crm/api/wizards/container.rb +119 -0
- data/src/com/zoho/crm/api/wizards/node.rb +118 -0
- data/src/com/zoho/crm/api/wizards/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/wizards/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/wizards/screen.rb +99 -0
- data/src/com/zoho/crm/api/wizards/segment.rb +176 -0
- data/src/com/zoho/crm/api/wizards/transition.rb +80 -0
- data/src/com/zoho/crm/api/wizards/wizard.rb +273 -0
- data/src/com/zoho/crm/api/wizards/wizards_operations.rb +61 -0
- data/src/resources/JSONDetails.json +1 -0
- data/src/version.rb +3 -0
- metadata +476 -41
- data/lib/ZCRMSDK.rb +0 -14
- data/lib/ZCRMSDK/handler.rb +0 -3290
- data/lib/ZCRMSDK/oauth_client.rb +0 -257
- data/lib/ZCRMSDK/oauth_utility.rb +0 -161
- data/lib/ZCRMSDK/operations.rb +0 -1091
- data/lib/ZCRMSDK/org.rb +0 -174
- data/lib/ZCRMSDK/persistence.rb +0 -129
- data/lib/ZCRMSDK/request.rb +0 -83
- data/lib/ZCRMSDK/response.rb +0 -216
- data/lib/ZCRMSDK/restclient.rb +0 -65
- data/lib/ZCRMSDK/test.rb +0 -5748
- data/lib/ZCRMSDK/utility.rb +0 -310
- data/lib/ZCRMSDK/version.rb +0 -5
@@ -0,0 +1,61 @@
|
|
1
|
+
require_relative '../param'
|
2
|
+
require_relative '../parameter_map'
|
3
|
+
require_relative '../exception/sdk_exception'
|
4
|
+
require_relative '../util/api_response'
|
5
|
+
require_relative '../util/common_api_handler'
|
6
|
+
require_relative '../util/constants'
|
7
|
+
|
8
|
+
module Wizards
|
9
|
+
class WizardsOperations
|
10
|
+
|
11
|
+
# Creates an instance of WizardsOperations
|
12
|
+
def initialize
|
13
|
+
end
|
14
|
+
|
15
|
+
# The method to get wizards
|
16
|
+
# @return An instance of APIResponse
|
17
|
+
# @raise SDKException
|
18
|
+
def get_wizards
|
19
|
+
handler_instance = Handler::CommonAPIHandler.new
|
20
|
+
api_path = ''
|
21
|
+
api_path = api_path + '/crm/v2.1/settings/wizards'
|
22
|
+
handler_instance.api_path = api_path
|
23
|
+
handler_instance.http_method = Constants::REQUEST_METHOD_GET
|
24
|
+
handler_instance.category_method = 'READ'
|
25
|
+
require_relative 'response_handler'
|
26
|
+
handler_instance.api_call(ResponseHandler.name, 'application/json')
|
27
|
+
end
|
28
|
+
|
29
|
+
# The method to get wizard by id
|
30
|
+
# @param wizard_id [Integer] A Integer
|
31
|
+
# @param param_instance [ParameterMap] An instance of ParameterMap
|
32
|
+
# @return An instance of APIResponse
|
33
|
+
# @raise SDKException
|
34
|
+
def get_wizard_by_id(wizard_id, param_instance=nil)
|
35
|
+
if !wizard_id.is_a? Integer
|
36
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: wizard_id EXPECTED TYPE: Integer', nil, nil)
|
37
|
+
end
|
38
|
+
if param_instance!=nil and !param_instance.is_a? ParameterMap
|
39
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: param_instance EXPECTED TYPE: ParameterMap', nil, nil)
|
40
|
+
end
|
41
|
+
handler_instance = Handler::CommonAPIHandler.new
|
42
|
+
api_path = ''
|
43
|
+
api_path = api_path + '/crm/v2.1/settings/wizards/'
|
44
|
+
api_path = api_path + wizard_id.to_s
|
45
|
+
handler_instance.api_path = api_path
|
46
|
+
handler_instance.http_method = Constants::REQUEST_METHOD_GET
|
47
|
+
handler_instance.category_method = 'READ'
|
48
|
+
handler_instance.param = param_instance
|
49
|
+
require_relative 'response_handler'
|
50
|
+
handler_instance.api_call(ResponseHandler.name, 'application/json')
|
51
|
+
end
|
52
|
+
|
53
|
+
class GetWizardbyIDParam
|
54
|
+
@@layout_id = Param.new('layout_id', 'com.zoho.crm.api.Wizards.GetWizardbyIDParam')
|
55
|
+
def self.layout_id
|
56
|
+
@@layout_id
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
end
|
61
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
{"com.zoho.crm.api.pipeline.GetPipelineParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.bulk_write.BulkWriteResponse":{"result":{"structure_name":"com.zoho.crm.api.bulk_write.Result","name":"result","type":"com.zoho.crm.api.bulk_write.Result"},"created_time":{"name":"created_time","type":"DateTime"},"resource":{"structure_name":"com.zoho.crm.api.bulk_write.Resource","name":"resource","type":"List"},"character_encoding":{"name":"character_encoding","type":"String"},"callback":{"structure_name":"com.zoho.crm.api.bulk_write.CallBack","name":"callback","type":"com.zoho.crm.api.bulk_write.CallBack"},"id":{"name":"id","type":"Long"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"operation":{"name":"operation","type":"String"},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.profiles.ResponseHandler":{"classes":["com.zoho.crm.api.profiles.APIException","com.zoho.crm.api.profiles.ResponseWrapper"],"interface":true},"com.zoho.crm.api.inventory_templates.GetInventoryTemplatebyIDParam":{"module_1":{"name":"module","type":"String"},"sort_by":{"name":"sort_by","type":"String"},"category":{"name":"category","type":"String"},"sort_order":{"name":"sort_order","type":"String"}},"com.zoho.crm.api.currencies.ActionResponse":{"classes":["com.zoho.crm.api.currencies.SuccessResponse","com.zoho.crm.api.currencies.APIException"],"interface":true},"com.zoho.crm.api.custom_views.Range":{"from":{"name":"from","type":"Integer"},"to":{"name":"to","type":"Integer"}},"com.zoho.crm.api.variables.GetVariablesParam":{"group":{"name":"group","type":"String","required":true}},"com.zoho.crm.api.record.Tax":{"id":{"name":"id","type":"Long"},"value":{"name":"value","type":"String"}},"com.zoho.crm.api.blue_print.ResponseHandler":{"classes":["com.zoho.crm.api.blue_print.ResponseWrapper","com.zoho.crm.api.blue_print.APIException"],"interface":true},"com.zoho.crm.api.bulk_write.File":{"skipped_count":{"name":"skipped_count","type":"Integer"},"updated_count":{"name":"updated_count","type":"Integer"},"total_count":{"name":"total_count","type":"Integer"},"name":{"name":"name","type":"String"},"added_count":{"name":"added_count","type":"Integer"},"status":{"values":["ADDED","IN PROGRESS","COMPLETED","SKIPPED","FAILED"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.MassUpdateActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.MassUpdateActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.notes.APIException":{"code":{"values":["NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","MANDATORY_NOT_FOUND","INVALID_DATA","NOT_SUPPORTED","REQUIRED_PARAM_MISSING"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"api_name","type":"String"},{"name":"param","type":"String"},{"name":"id","type":"Long"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the id given seems to be invalid","One of the expected parameter is missing","record not deleted","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.tags.UpdateTagParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.send_mail.DataSubjectRequest":{"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.related_records.GetRelatedRecordHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.pipeline.TransferPipeLine":{"pipeline":{"structure_name":"com.zoho.crm.api.pipeline.Pipeline","name":"pipeline","type":"com.zoho.crm.api.pipeline.Pipeline","skip_mandatory":true,"required":true},"stages":{"structure_name":"com.zoho.crm.api.pipeline.Stage","name":"stages","type":"List","required":true}},"com.zoho.crm.api.users.ActionResponse":{"classes":["com.zoho.crm.api.users.SuccessResponse","com.zoho.crm.api.users.APIException"],"interface":true},"com.zoho.crm.api.currencies.BaseCurrencyWrapper":{"base_currency":{"structure_name":"com.zoho.crm.api.currencies.Currency","name":"base_currency","type":"com.zoho.crm.api.currencies.Currency","required":true}},"com.zoho.crm.api.notification.ActionHandler":{"classes":["com.zoho.crm.api.notification.APIException","com.zoho.crm.api.notification.ActionWrapper"],"interface":true},"com.zoho.crm.api.taxes.Preference":{"auto_populate_tax":{"name":"auto_populate_tax","type":"Boolean"},"modify_tax_rates":{"name":"modify_tax_rates","type":"Boolean"}},"com.zoho.crm.api.profiles.Category":{"display_label":{"name":"display_label","type":"String"},"module_1":{"name":"module","type":"String"},"permissions_details":{"name":"permissions_details","type":"List"},"name":{"name":"name","type":"String"}},"com.zoho.crm.api.blue_print.BodyWrapper":{"blueprint":{"structure_name":"com.zoho.crm.api.blue_print.BluePrint","name":"blueprint","max-length":1,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.tags.AddTagsToRecordParam":{"over_write":{"name":"over_write","type":"String"},"tag_names":{"name":"tag_names","type":"String","required":true}},"com.zoho.crm.api.layouts.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","REQUIRED_PARAM_MISSING","INTERNAL_ERROR","NO_PERMISSION","INVALID_DATA"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","User does not have permission to access this layout.","Layout does not belongs to the given module","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.CustomizeInfo":{"notes_desc":{"name":"notes_desc","type":"Boolean"},"show_right_panel":{"name":"show_right_panel","type":"String"},"bc_view":{"name":"bc_view","type":"String"},"show_home":{"name":"show_home","type":"Boolean"},"show_detail_view":{"name":"show_detail_view","type":"Boolean"},"unpin_recent_item":{"name":"unpin_recent_item","type":"String"}},"com.zoho.crm.api.bulk_read.ResponseHandler":{"classes":["com.zoho.crm.api.bulk_read.ResponseWrapper","com.zoho.crm.api.bulk_read.APIException","com.zoho.crm.api.bulk_read.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.notification.ResponseHandler":{"classes":["com.zoho.crm.api.notification.APIException","com.zoho.crm.api.notification.ResponseWrapper"],"interface":true},"com.zoho.crm.api.query.APIException":{"code":{"values":["INVALID_QUERY","OAUTH_SCOPE_MISMATCH","SYNTAX_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"near","type":"String"},{"name":"column","type":"Integer"},{"name":"line","type":"Integer"},{"name":"clause","type":"String"},{"name":"by","type":"String"},{"name":"limit","type":"Integer"},{"name":"column_name","type":"String"},{"name":"reason","type":"String"},{"name":"module","type":"String"},{"name":"data_type","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"operator","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid query formed","value given seems to be invalid for the column","data type not supported","column given seems to be invalid","invalid oauth scope to access this URL","limit exceeded","given coql query not supported","select columns limit exceeded","join limit exceeded","missing clause","error occured while parsing the query","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the module name given seems to be invalid","duplicate data","required field not found","invalid data","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.bulk_write.UploadFileHeader":{"feature":{"values":["bulk-write"],"name":"feature","type":"String"},"X_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.custom_views.Criteria":{"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com.zoho.crm.api.util.Choice"},"field":{"structure_name":"com.zoho.crm.api.fields.Field","name":"field","type":"com.zoho.crm.api.fields.Field"},"group_operator":{"values":["and","or"],"name":"group_operator","type":"com.zoho.crm.api.util.Choice"},"value":{"name":"value","type":"Object"},"group":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"group","type":"List"}},"com.zoho.crm.api.pipeline.TransferAndDeleteWrapper":{"transfer_pipeline":{"structure_name":"com.zoho.crm.api.pipeline.TransferPipeLine","name":"transfer_pipeline","type":"List"}},"com.zoho.crm.api.record.Widget":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.LineItemProduct":{"name":{"name":"name","type":"String"},"currency":{"name":"Currency","type":"String"},"product_code":{"name":"Product_Code","type":"String"}},"com.zoho.crm.api.attachments.UploadLinkAttachmentParam":{"attachmentUrl":{"name":"attachmentUrl","type":"String"}},"com.zoho.crm.api.pipeline.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","REQUIRED_PARAM_MISSING","INTERNAL_ERROR","NO_PERMISSION","INVALID_DATA","MANDATORY_NOT_FOUND"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Invalid from id","required field not found","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","User does not have permission to access this layout.","Internal server error occurred.","Pipeline created","Pipeline updated","invalid layoutid","required field not found","Invalid child option id","Duplicate pipeline label found","invalid pick_list_values id","Invalid child option id","invalid pick_list_values id","Cannot delete the last stage associated with the pipeline","Sequence number should be an integer","Default value should be boolean","The pipeline given as display label is being deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.org.LicenseDetails":{"paid_expiry":{"name":"paid_expiry","type":"DateTime"},"users_license_purchased":{"name":"users_license_purchased","type":"Long"},"trial_type":{"name":"trial_type","type":"String"},"trial_expiry":{"name":"trial_expiry","type":"String"},"paid":{"name":"paid","type":"Boolean"},"paid_type":{"name":"paid_type","type":"String"}},"com.zoho.crm.api.record.MassUpdateTerritory":{"include_child":{"name":"include_child","type":"Boolean"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.roles.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.profiles.Section":{"name":{"name":"name","type":"String"},"categories":{"structure_name":"com.zoho.crm.api.profiles.Category","name":"categories","type":"List"}},"com.zoho.crm.api.tags.CountWrapper":{"count":{"name":"count","type":"String"}},"com.zoho.crm.api.tags.ResponseHandler":{"classes":["com.zoho.crm.api.tags.ResponseWrapper","com.zoho.crm.api.tags.APIException"],"interface":true},"com.zoho.crm.api.inventory_templates.InventoryTemplate":{"created_time":{"name":"created_time","type":"DateTime"},"module_1":{"structure_name":"com.zoho.crm.api.modules.Module","name":"module","type":"com.zoho.crm.api.modules.Module"},"subject":{"name":"subject","type":"String"},"description":{"name":"description","type":"String"},"type":{"name":"type","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"content":{"name":"content","type":"String"},"modified_time":{"name":"modified_time","type":"DateTime"},"folder":{"structure_name":"com.zoho.crm.api.inventory_templates.InventoryTemplate","name":"folder","type":"com.zoho.crm.api.inventory_templates.InventoryTemplate"},"last_usage_time":{"name":"last_usage_time","type":"DateTime"},"associated":{"name":"associated","type":"Boolean"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"editor_mode":{"name":"editor_mode","type":"String"},"favorite":{"name":"favorite","type":"Boolean"}},"com.zoho.crm.api.wizards.Button":{"sequence_number":{"name":"sequence_number","type":"Integer"},"display_label":{"name":"display_label","type":"String"},"color":{"name":"color","type":"String"},"shape":{"name":"shape","type":"String"},"background_color":{"name":"background_color","type":"String"},"visibility":{"name":"visibility","type":"String"},"criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"target_screen":{"structure_name":"com.zoho.crm.api.wizards.Screen","name":"target_screen","type":"com.zoho.crm.api.wizards.Screen"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"transition":{"structure_name":"com.zoho.crm.api.wizards.Transition","name":"transition","type":"com.zoho.crm.api.wizards.Transition"}},"com.zoho.crm.api.pipeline.GetPipelinesParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.email_templates.ResponseWrapper":{"email_templates":{"structure_name":"com.zoho.crm.api.email_templates.EmailTemplate","name":"email_templates","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.taxes.ActionResponse":{"classes":["com.zoho.crm.api.taxes.SuccessResponse","com.zoho.crm.api.taxes.APIException"],"interface":true},"com.zoho.crm.api.bulk_read.ActionHandler":{"classes":["com.zoho.crm.api.bulk_read.APIException","com.zoho.crm.api.bulk_read.ActionWrapper"],"interface":true},"com.zoho.crm.api.pipeline.PickListValue":{"display_value":{"name":"display_value","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer","required":true},"forecast_category":{"structure_name":"com.zoho.crm.api.pipeline.ForecastCategory","name":"forecast_category","type":"com.zoho.crm.api.pipeline.ForecastCategory"},"actual_value":{"name":"actual_value","type":"String"},"id":{"name":"id","type":"Long","required":true},"forecast_type":{"name":"forecast_type","type":"String"},"delete":{"name":"_delete","type":"Boolean"}},"com.zoho.crm.api.tags.Tag":{"created_time":{"name":"created_time","type":"DateTime"},"modified_time":{"name":"modified_time","type":"DateTime"},"name":{"required_in_update":true,"name":"name","type":"String","required":true},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"color_code":{"name":"color_code","type":"String"}},"com.zoho.crm.api.notes.DeleteNotesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.tags.APIException":{"code":{"values":["REQUIRED_PARAM_MISSING","MANDATORY_NOT_FOUND","INVALID_MODULE","DUPLICATE_DATA","TAG_ID_NOT_FOUND","FAILURE","INTERNAL_ERROR","NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","LICENSE_LIMIT_EXCEEDED","NOT_SUPPORTED_FEATURE"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"available_limit","type":"Integer"},{"name":"limit","type":"Integer"},{"name":"json_path","type":"String"},{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"param","type":"String"},{"name":"permissions","type":"List"},{"name":"maximum_length","type":"Integer"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["tags merged successfully","Tag limit for record has been exceeded.","Tag Name can contain only 25 characters","Tag limit for module has been exceeded.","your edition doesn't support this feature","permission denied to update records","permission denied","Given tag present with different colour already.","The colour is not supported","tags not found","special characters found in the given name","One of the expected parameter is missing","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid","duplicate data","tag edition limit exceeded","invalid data","tags not updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.share_records.GetSharedRecordDetailsParam":{"view":{"name":"view","type":"String"},"sharedTo":{"name":"sharedTo","type":"Long"}},"com.zoho.crm.api.notification.DisableNotificationsParam":{"channel_ids":{"name":"channel_ids","type":"Long"}},"com.zoho.crm.api.bulk_write.ResponseHandler":{"classes":["com.zoho.crm.api.bulk_write.APIException","com.zoho.crm.api.bulk_write.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.pipeline.ForecastCategory":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.layouts.Properties":{"reorder_rows":{"name":"reorder_rows","type":"Boolean"},"tooltip":{"structure_name":"com.zoho.crm.api.fields.ToolTip","name":"tooltip","type":"com.zoho.crm.api.fields.ToolTip"},"maximum_rows":{"name":"maximum_rows","type":"Integer"}},"com.zoho.crm.api.record.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.wizards.ResponseWrapper":{"wizards":{"structure_name":"com.zoho.crm.api.wizards.Wizard","name":"wizards","type":"List"}},"com.zoho.crm.api.profiles.ResponseWrapper":{"profiles":{"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"}},"com.zoho.crm.api.notification.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.related_records.BodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.email_templates.EmailTemplate":{"created_time":{"name":"created_time","type":"DateTime"},"attachments":{"structure_name":"com.zoho.crm.api.email_templates.Attachment","name":"attachments","type":"List"},"module_1":{"structure_name":"com.zoho.crm.api.modules.Module","name":"module","type":"com.zoho.crm.api.modules.Module"},"subject":{"name":"subject","type":"String"},"description":{"name":"description","type":"String"},"type":{"name":"type","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"content":{"name":"content","type":"String"},"modified_time":{"name":"modified_time","type":"DateTime"},"folder":{"structure_name":"com.zoho.crm.api.email_templates.EmailTemplate","name":"folder","type":"com.zoho.crm.api.email_templates.EmailTemplate"},"last_usage_time":{"name":"last_usage_time","type":"DateTime"},"associated":{"name":"associated","type":"Boolean"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"consent_linked":{"name":"consent_linked","type":"Boolean"},"id":{"name":"id","type":"Long","primary":true},"editor_mode":{"name":"editor_mode","type":"String"},"favorite":{"name":"favorite","type":"Boolean"}},"com.zoho.crm.api.tags.GetTagsParam":{"module_1":{"name":"module","type":"String","required":true},"my_tags":{"values":["true","false"],"name":"my_tags","type":"String"}},"com.zoho.crm.api.tags.ConflictWrapper":{"conflict_id":{"name":"conflict_id","type":"String","required":true}},"com.zoho.crm.api.record.MultiSelectLookup":{"fieldname":{"name":"fieldName","type":"Map"},"id":{"name":"id","type":"Long"},"has_more":{"name":"$has_more","type":"Map"}},"com.zoho.crm.api.fields.Formula":{"return_type":{"name":"return_type","type":"String"},"expression":{"name":"expression","type":"String"}},"com.zoho.crm.api.custom_views.Info":{"per_page":{"name":"per_page","type":"Integer"},"default":{"name":"default","type":"String"},"count":{"name":"count","type":"Integer"},"translation":{"structure_name":"com.zoho.crm.api.custom_views.Translation","name":"translation","type":"com.zoho.crm.api.custom_views.Translation"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.bulk_read.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.bulk_read.JobDetail","name":"data","type":"List"}},"com.zoho.crm.api.send_mail.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.send_mail.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.variables.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["variable added","variable updated","variable deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.attachments.ResponseHandler":{"classes":["com.zoho.crm.api.attachments.APIException","com.zoho.crm.api.attachments.ResponseWrapper","com.zoho.crm.api.attachments.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.notes.GetNoteParam":{"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.taxes.ActionHandler":{"classes":["com.zoho.crm.api.taxes.ActionWrapper","com.zoho.crm.api.taxes.APIException"],"interface":true},"com.zoho.crm.api.blue_print.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","RECORD_NOT_IN_PROCESS","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"message","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"info_message","type":"String"},{"name":"parent_api_name","type":"String"},{"structure_name":"com.zoho.crm.api.blue_print.ValidationError","name":"validation_error","type":"List"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","invalid transition","invalid data","record not in process","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.files.UploadFilesParam":{"type":{"name":"type","type":"String","required":true}},"com.zoho.crm.api.taxes.Tax":{"display_label":{"name":"display_label","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"name":{"name":"name","type":"String","required":true},"id":{"name":"id","type":"Long","primary":true},"value":{"name":"value","type":"Double","required":true}},"com.zoho.crm.api.related_lists.RelatedList":{"sequence_number":{"name":"sequence_number","type":"String"},"display_label":{"name":"display_label","type":"String"},"module_1":{"name":"module","type":"String"},"api_name":{"name":"api_name","type":"String"},"name":{"name":"name","type":"String"},"action":{"name":"action","type":"String"},"id":{"name":"id","type":"Long","primary":true},"href":{"name":"href","type":"String"},"type":{"name":"type","type":"String"},"connectedmodule":{"name":"connectedmodule","type":"String"},"linkingmodule":{"name":"linkingmodule","type":"String"}},"com.zoho.crm.api.profiles.GetProfilesHeader":{"if_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.pipeline.UpdatePipelineParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.wizards.Connection":{"source_button":{"structure_name":"com.zoho.crm.api.wizards.Button","name":"source_button","type":"com.zoho.crm.api.wizards.Button"},"target_screen":{"structure_name":"com.zoho.crm.api.wizards.Screen","name":"target_screen","type":"com.zoho.crm.api.wizards.Screen"}},"com.zoho.crm.api.custom_views.Translation":{"public_views":{"name":"public_views","type":"String"},"other_users_views":{"name":"other_users_views","type":"String"},"shared_with_me":{"name":"shared_with_me","type":"String"},"created_by_me":{"name":"created_by_me","type":"String"}},"com.zoho.crm.api.tags.ResponseWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"tags","type":"List"},"info":{"structure_name":"com.zoho.crm.api.tags.Info","name":"info","type":"com.zoho.crm.api.tags.Info"}},"com.zoho.crm.api.send_mail.Mail":{"cc":{"structure_name":"com.zoho.crm.api.send_mail.UserAddress","name":"cc","type":"List"},"template":{"structure_name":"com.zoho.crm.api.send_mail.Template","name":"template","interface":true,"type":"com.zoho.crm.api.send_mail.Template"},"data_subject_request":{"structure_name":"com.zoho.crm.api.send_mail.DataSubjectRequest","name":"data_subject_request","type":"com.zoho.crm.api.send_mail.DataSubjectRequest"},"bcc":{"structure_name":"com.zoho.crm.api.send_mail.UserAddress","name":"bcc","type":"List"},"attachments":{"structure_name":"com.zoho.crm.api.attachments.Attachment","name":"attachments","type":"List"},"subject":{"name":"subject","type":"String"},"view_type":{"name":"view_type","type":"String"},"mail_format":{"name":"mail_format","type":"String"},"scheduled_time":{"name":"scheduled_time","type":"DateTime"},"content":{"name":"content","type":"String"},"in_reply_to":{"name":"in_reply_to","type":"String"},"paper_type":{"name":"paper_type","type":"String"},"consent_email":{"name":"consent_email","type":"Boolean"},"org_email":{"name":"org_email","type":"Boolean"},"reply_to":{"structure_name":"com.zoho.crm.api.send_mail.UserAddress","name":"reply_to","type":"com.zoho.crm.api.send_mail.UserAddress"},"inventory_details":{"structure_name":"com.zoho.crm.api.send_mail.InventoryDetails","name":"inventory_details","type":"com.zoho.crm.api.send_mail.InventoryDetails"},"from":{"structure_name":"com.zoho.crm.api.send_mail.UserAddress","name":"from","type":"com.zoho.crm.api.send_mail.UserAddress","required":true},"to":{"structure_name":"com.zoho.crm.api.send_mail.UserAddress","name":"to","type":"List","required":true},"id":{"name":"id","type":"Long","primary":true},"email":{"name":"email","type":"Integer"}},"com.zoho.crm.api.custom_views.CustomView":{"display_value":{"name":"display_value","type":"String"},"access_type":{"name":"access_type","type":"String"},"criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"system_name":{"name":"system_name","type":"String"},"sort_by":{"name":"sort_by","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"shared_to":{"structure_name":"com.zoho.crm.api.custom_views.SharedTo","name":"shared_to","type":"List"},"default":{"name":"default","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"name":{"name":"name","type":"String"},"system_defined":{"name":"system_defined","type":"Boolean"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"category":{"name":"category","type":"String"},"fields":{"structure_name":"com.zoho.crm.api.fields.Field","name":"fields","type":"List"},"last_accessed_time":{"name":"last_accessed_time","type":"DateTime"},"sort_order":{"name":"sort_order","type":"String"},"favorite":{"name":"favorite","type":"Integer"}},"com.zoho.crm.api.tags.CountHandler":{"classes":["com.zoho.crm.api.tags.APIException","com.zoho.crm.api.tags.CountWrapper"],"interface":true},"com.zoho.crm.api.variables.Variable":{"api_name":{"required_in_update":false,"name":"api_name","type":"String","primary":true},"name":{"name":"name","type":"String","required":true},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true},"type":{"name":"type","type":"String","required":true},"variable_group":{"structure_name":"com.zoho.crm.api.variable_groups.VariableGroup","name":"variable_group","type":"com.zoho.crm.api.variable_groups.VariableGroup","skip_mandatory":true,"required":true},"value":{"name":"value","type":"Object"}},"com.zoho.crm.api.fields.Crypt":{"mode":{"name":"mode","type":"String"},"column":{"name":"column","type":"String"},"encfldids":{"name":"encFldIds","type":"List"},"notify":{"name":"notify","type":"String"},"table":{"name":"table","type":"String"},"status":{"name":"status","type":"Integer"}},"com.zoho.crm.api.currencies.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["The multi-currency feature is enabled and given currency is created as the base currency.","The currency created successfully.","The currency updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.variable_groups.APIException":{"code":{"values":["INTERNAL_ERROR","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.fields.HistoryTracking":{"module_1":{"structure_name":"com.zoho.crm.api.fields.Module","name":"module","type":"com.zoho.crm.api.fields.Module"},"duration_configured_field":{"structure_name":"com.zoho.crm.api.fields.Field","name":"duration_configured_field","type":"com.zoho.crm.api.fields.Field"}},"com.zoho.crm.api.contact_roles.DeleteContactRolesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.modules.ActionResponse":{"classes":["com.zoho.crm.api.modules.APIException","com.zoho.crm.api.modules.SuccessResponse"],"interface":true},"com.zoho.crm.api.record.ResponseHandler":{"classes":["com.zoho.crm.api.record.ResponseWrapper","com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.currencies.APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","ALREADY_ENABLED","FEATURE_NOT_ENABLED","NOT_ALLOWED","ACTIVE_STATE_LIMIT_EXCEEDED","INTERNAL_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","CURRENCIES_NOT_ENABLED","FEATURE_NOT_SUPPORTED","No Content"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one.","The http request method type is not a valid one","The module name given seems to be invalid","The multi-currency is already enabled","Currency name is invalid.","ISO code is invalid.","Currency symbol is invalid.","The multi-currency feature is not available except the Enterprise and higher editions.","Required field not found.","unable to process your request. please verify whether you have entered proper method name"," parameter and parameter values.","Currency symbol is invalid.","Multi currency is not enabled","No Content","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.pipeline.BodyWrapper":{"pipeline":{"structure_name":"com.zoho.crm.api.pipeline.Pipeline","name":"pipeline","type":"List"}},"com.zoho.crm.api.record.MassUpdate":{"updated_count":{"name":"Updated_Count","type":"Integer"},"total_count":{"name":"Total_Count","type":"Integer"},"not_updated_count":{"name":"Not_Updated_Count","type":"Integer"},"failed_count":{"name":"Failed_Count","type":"Integer"},"status":{"values":["COMPLETED","SCHEDULED","RUNNING","FAILED"],"name":"Status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.related_records.GetRelatedRecordsHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.fields.PickListValue":{"display_value":{"name":"display_value","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"expected_data_type":{"name":"expected_data_type","type":"String"},"maps":{"structure_name":"com.zoho.crm.api.fields.Maps","name":"maps","type":"List"},"sys_ref_name":{"name":"sys_ref_name","type":"String"},"actual_value":{"name":"actual_value","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.currencies.ActionWrapper":{"currencies":{"structure_name":"com.zoho.crm.api.currencies.ActionResponse","name":"currencies","type":"List"}},"com.zoho.crm.api.profiles.PermissionDetail":{"display_label":{"name":"display_label","type":"String"},"module_1":{"name":"module","type":"String"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"enabled":{"name":"enabled","type":"Boolean"}},"com.zoho.crm.api.users.Territory":{"manager":{"name":"manager","type":"Boolean"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.variables.APIException":{"code":{"values":["UNABLE_TO_PARSE_DATA_TYPE","REQUIRED_PARAM_MISSING","DUPLICATE_DATA","INVALID_DATA","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INTERNAL_ERROR","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param","type":"String"},{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["either the request body or parameters is in wrong format","One of the expected parameter is missing","duplicate data","variable not deleted","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notes.GetNotesParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.fields.Field":{"webhook":{"name":"webhook","type":"Boolean"},"criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"field_label":{"name":"field_label","type":"String"},"tooltip":{"structure_name":"com.zoho.crm.api.fields.ToolTip","name":"tooltip","type":"com.zoho.crm.api.fields.ToolTip"},"type":{"name":"type","type":"String"},"layouts":{"structure_name":"com.zoho.crm.api.layouts.Layout","name":"layouts","type":"com.zoho.crm.api.layouts.Layout"},"field_read_only":{"name":"field_read_only","type":"Boolean"},"display_label":{"name":"display_label","type":"String"},"read_only":{"name":"read_only","type":"Boolean"},"association_details":{"structure_name":"com.zoho.crm.api.fields.AssociationDetails","name":"association_details","type":"com.zoho.crm.api.fields.AssociationDetails"},"businesscard_supported":{"name":"businesscard_supported","type":"Boolean"},"multi_module_lookup":{"structure_name":"com.zoho.crm.api.fields.MultiModuleLookup","name":"multi_module_lookup","type":"com.zoho.crm.api.fields.MultiModuleLookup"},"id":{"name":"id","type":"Long","read-only":true,"primary":true},"filterable":{"name":"filterable","type":"Boolean"},"visible":{"name":"visible","type":"Boolean"},"related_details":{"structure_name":"com.zoho.crm.api.fields.RelatedDetails","name":"related_details","type":"com.zoho.crm.api.fields.RelatedDetails"},"profiles":{"lookup":true,"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"},"view_type":{"structure_name":"com.zoho.crm.api.fields.ViewType","name":"view_type","type":"com.zoho.crm.api.fields.ViewType"},"personality_name":{"name":"personality_name","type":"String"},"subform":{"structure_name":"com.zoho.crm.api.fields.Module","name":"subform","type":"com.zoho.crm.api.fields.Module"},"external":{"structure_name":"com.zoho.crm.api.fields.External","name":"external","type":"com.zoho.crm.api.fields.External"},"api_name":{"name":"api_name","type":"String"},"unique":{"structure_name":"com.zoho.crm.api.fields.Unique","name":"unique","type":"com.zoho.crm.api.fields.Unique"},"pick_list_values":{"structure_name":"com.zoho.crm.api.fields.PickListValue","name":"pick_list_values","type":"List"},"system_mandatory":{"name":"system_mandatory","type":"Boolean"},"private":{"structure_name":"com.zoho.crm.api.fields.Private","name":"private","type":"com.zoho.crm.api.fields.Private"},"json_type":{"name":"json_type","type":"String"},"crypt":{"structure_name":"com.zoho.crm.api.fields.Crypt","name":"crypt","type":"com.zoho.crm.api.fields.Crypt"},"created_source":{"name":"created_source","type":"String"},"mandatory":{"name":"mandatory","type":"Boolean"},"content":{"name":"content","type":"String"},"display_type":{"values":[-1,0,1,2,3,4,5],"name":"display_type","type":"com.zoho.crm.api.util.Choice"},"ui_type":{"name":"ui_type","type":"Integer"},"validation_rule":{"name":"validation_rule","type":"Map"},"quick_sequence_number":{"name":"quick_sequence_number","type":"Integer"},"currency":{"structure_name":"com.zoho.crm.api.fields.Currency","name":"currency","type":"com.zoho.crm.api.fields.Currency"},"multiuserlookup":{"structure_name":"com.zoho.crm.api.fields.MultiUserLookup","name":"multiuserlookup","type":"com.zoho.crm.api.fields.MultiUserLookup"},"custom_field":{"name":"custom_field","type":"Boolean"},"lookup":{"structure_name":"com.zoho.crm.api.fields.Module","name":"lookup","type":"com.zoho.crm.api.fields.Module"},"convert_mapping":{"name":"convert_mapping","type":"Map"},"column_name":{"name":"column_name","type":"String"},"length":{"name":"length","type":"Integer"},"pick_list_values_sorted_lexically":{"name":"pick_list_values_sorted_lexically","type":"Boolean"},"default_value":{"name":"default_value","type":"String"},"sortable":{"name":"sortable","type":"Boolean"},"transition_sequence":{"name":"transition_sequence","type":"Integer"},"message":{"name":"message","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"history_tracking":{"structure_name":"com.zoho.crm.api.fields.HistoryTracking","name":"history_tracking","type":"com.zoho.crm.api.fields.HistoryTracking"},"data_type":{"name":"data_type","type":"String","read-only":true},"formula":{"structure_name":"com.zoho.crm.api.fields.Formula","name":"formula","type":"com.zoho.crm.api.fields.Formula"},"decimal_place":{"name":"decimal_place","type":"Integer"},"mass_update":{"name":"mass_update","type":"Boolean"},"blueprint_supported":{"name":"blueprint_supported","type":"Boolean"},"multiselectlookup":{"structure_name":"com.zoho.crm.api.fields.MultiSelectLookup","name":"multiselectlookup","type":"com.zoho.crm.api.fields.MultiSelectLookup"},"auto_number":{"structure_name":"com.zoho.crm.api.fields.AutoNumber","name":"auto_number","type":"com.zoho.crm.api.fields.AutoNumber"}},"com.zoho.crm.api.contact_roles.ResponseHandler":{"classes":["com.zoho.crm.api.contact_roles.ResponseWrapper","com.zoho.crm.api.contact_roles.APIException"],"interface":true},"com.zoho.crm.api.custom_views.SharedTo":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"subordinates":{"name":"subordinates","type":"Boolean"}},"com.zoho.crm.api.email_templates.Attachment":{"size":{"name":"size","type":"Long"},"file_name":{"name":"file_name","type":"String"},"file_id":{"name":"file_id","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.tags.GetRecordCountForTagParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.layouts.Section":{"display_label":{"name":"display_label","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"issubformsection":{"name":"isSubformSection","type":"Boolean"},"tab_traversal":{"name":"tab_traversal","type":"Integer"},"api_name":{"name":"api_name","type":"String"},"column_count":{"name":"column_count","type":"Integer"},"name":{"name":"name","type":"String"},"generated_type":{"name":"generated_type","type":"String"},"fields":{"structure_name":"com.zoho.crm.api.fields.Field","name":"fields","type":"List"},"type":{"name":"type","type":"String"},"properties":{"structure_name":"com.zoho.crm.api.layouts.Properties","name":"properties","type":"com.zoho.crm.api.layouts.Properties"}},"com.zoho.crm.api.send_mail.BodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.send_mail.Mail","name":"data","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.wizards.ResponseHandler":{"classes":["com.zoho.crm.api.wizards.ResponseWrapper","com.zoho.crm.api.wizards.APIException"],"interface":true},"com.zoho.crm.api.contact_roles.ActionHandler":{"classes":["com.zoho.crm.api.contact_roles.APIException","com.zoho.crm.api.contact_roles.ActionWrapper"],"interface":true},"com.zoho.crm.api.blue_print.Escalation":{"days":{"name":"days","type":"Integer"},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.wizards.GetWizardbyIDParam":{"layout_id":{"name":"layout_id","type":"String","required":true}},"com.zoho.crm.api.record.FileDetails":{"extn":{"name":"extn","type":"String"},"file_name":{"name":"file_Name","type":"String"},"link_docs":{"name":"link_Docs","type":"Integer"},"delete_url":{"name":"delete_Url","type":"String"},"entity_id":{"name":"entity_Id","type":"String"},"delete":{"name":"_delete","type":"String"},"file_size":{"name":"file_Size","type":"String"},"mode":{"name":"mode","type":"String"},"preview_url":{"name":"preview_Url","type":"String"},"file_id":{"name":"file_Id","type":"String","required":true},"is_preview_available":{"name":"is_Preview_Available","type":"Boolean"},"download_url":{"name":"download_Url","type":"String"},"attachment_id":{"name":"attachment_Id","type":"String"},"creator_id":{"name":"creator_Id","type":"String"},"original_size_byte":{"name":"original_Size_Byte","type":"String"}},"com.zoho.crm.api.files.APIException":{"code":{"values":["VIRUS_DETECTED","failure_in_attachment_handling","INTERNAL_ERROR","INVALID_TOKEN","INVALID_DATA","MANDATORY_NOT_FOUND","NO_PERMISSION","INVALID_MODULE","NOT_SUPPORTED","PATTERN_NOT_MATCHED","OAUTH_SCOPE_MISMATCH","DUPLICATE_DATA","INVALID_QUERY","MAPPING_MISMATCH","ID_ALREADY_CONVERTED","FILE_SIZE_MORE_THAN_ALLOWED_SIZE","RECORD_IN_BLUEPRINT","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","REQUIRED_PARAM_MISSING"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Unable to process your request. Virus has been detected.","Problem in uploading attachment. kindly upload the file properly","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","invalid data","permission denied","Internal server error occurred.","duplicate data","required field not found","record not deleted","record not deletable","Authentication failed","One of the expected parameter is missing","mandatory param missing","unable to process your request. please verify whether you have entered proper method name"," parameter and parameter values."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.layouts.ResponseHandler":{"classes":["com.zoho.crm.api.layouts.ResponseWrapper","com.zoho.crm.api.layouts.APIException"],"interface":true},"com.zoho.crm.api.notification.BodyWrapper":{"watch":{"structure_name":"com.zoho.crm.api.notification.Notification","name":"watch","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.blue_print.ActionResponse":{"classes":["com.zoho.crm.api.blue_print.SuccessResponse","com.zoho.crm.api.blue_print.APIException"],"interface":true},"com.zoho.crm.api.taxes.BodyWrapper":{"taxes":{"structure_name":"com.zoho.crm.api.taxes.Tax","name":"taxes","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.notes.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.notes.Note","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.notes.Info","name":"info","type":"com.zoho.crm.api.notes.Info"}},"com.zoho.crm.api.taxes.ActionWrapper":{"taxes":{"structure_name":"com.zoho.crm.api.taxes.ActionResponse","name":"taxes","type":"List"}},"com.zoho.crm.api.inventory_templates.ResponseWrapper":{"inventory_templates":{"structure_name":"com.zoho.crm.api.inventory_templates.InventoryTemplate","name":"inventory_templates","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.related_lists.GetRelatedListParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.variables.BodyWrapper":{"variables":{"structure_name":"com.zoho.crm.api.variables.Variable","name":"variables","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.inventory_templates.APIException":{"code":{"values":["FEATURE_NOT_SUPPORTED","INVALID_MODULE","NO_PERMISSION","PATTERN_NOT_MATCHED","INTERNAL_ERROR","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"param_name","type":"String"},{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Please check whether the input values are correct","the module name given seems to be invalid","feature not available in this edition","permission denied","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.wizards.Wizard":{"created_time":{"name":"created_time","type":"DateTime"},"modified_time":{"name":"modified_time","type":"DateTime"},"module_1":{"structure_name":"com.zoho.crm.api.modules.Module","name":"module","type":"com.zoho.crm.api.modules.Module"},"parent_wizard":{"structure_name":"com.zoho.crm.api.wizards.Wizard","name":"parent_wizard","type":"com.zoho.crm.api.wizards.Wizard"},"draft":{"name":"draft","type":"Boolean"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"profiles":{"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"},"active":{"name":"active","type":"Boolean"},"containers":{"structure_name":"com.zoho.crm.api.wizards.Container","name":"containers","type":"List"},"id":{"name":"id","type":"Long","primary":true},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"}},"com.zoho.crm.api.related_records.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["relation added","relation removed"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.send_mail.ActionHandler":{"classes":["com.zoho.crm.api.send_mail.APIException","com.zoho.crm.api.send_mail.ActionWrapper"],"interface":true},"com.zoho.crm.api.record.Record":{"created_time":{"name":"Created_Time","type":"DateTime"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"tag":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"Tag","type":"List","skip_mandatory":true},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"}},"com.zoho.crm.api.variable_groups.ResponseHandler":{"classes":["com.zoho.crm.api.variable_groups.ResponseWrapper","com.zoho.crm.api.variable_groups.APIException"],"interface":true},"com.zoho.crm.api.bulk_write.ResponseWrapper":{"classes":["com.zoho.crm.api.bulk_write.APIException","com.zoho.crm.api.bulk_write.BulkWriteResponse"],"interface":true},"com.zoho.crm.api.users.APIException":{"code":{"values":["ID_ALREADY_DELETED","CANNOT_UPDATE_DELETED_USER","AUTHORIZATION_FAILED","PATTERN_NOT_MATCHED","INVALID_REQUEST","LICENSE_LIMIT_EXCEEDED","DUPLICATE_DATA","INVALID_DATA","UNAPPROVABLE","MANDATORY_NOT_FOUND","INTERNAL_ERROR","EMAIL_UPDATE_NOT_ALLOWED","ID_ALREADY_DEACTIVATED","ID_ALREADY_ACTIVE","FEATURE_PERMISSION","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred.","Cannot add user under CRM Plus account. Kindly use CRMPlus URL to add user","Request exceeds your license limit. Need to upgrade in order to add","Failed to add user since same email id is already present","Email Id should not contain @skydesk.jp. Please choose a different email id","Invalid Email Id. Please choose a different email id","Cannot add user for CRMPlus account from CRM. Kindly add user through CRMPlus","Company Name is required","Error occurred in resending the invitation of CRMPLUS user in CRM account","Cannot update the time_zone of another User","Either trial has expired or user does not have sufficient privilege to perform this action","Error occurred while updating CRMPlus User in CRM Account","invalid_data","Deleted user cannot be updated","Re-invite is not allowed for a confirmed user","Cannot update email of a confirmed CRM User","User with same email id is already in CRM Plus","User is already deactivated","Primary Contact cannot be deactivated","User is already active","Share among Subordinates Feature is not available","Profile and Role cannot be Updated by the user.","the_id_given_seems_to_be_invalid","Primary contact cannot be deleted","User is already deleted","User does not have sufficient privilege to delete users"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.attachments.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.attachments.Attachment","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.notification.ActionResponse":{"classes":["com.zoho.crm.api.notification.SuccessResponse","com.zoho.crm.api.notification.APIException"],"interface":true},"com.zoho.crm.api.profiles.GetProfileHeader":{"if_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.users.ResponseWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.User","name":"users","type":"List"},"info":{"structure_name":"com.zoho.crm.api.users.Info","name":"info","type":"com.zoho.crm.api.users.Info"}},"com.zoho.crm.api.share_records.ActionResponse":{"classes":["com.zoho.crm.api.share_records.SuccessResponse","com.zoho.crm.api.share_records.APIException"],"interface":true},"com.zoho.crm.api.bulk_read.RequestWrapper":{"file_type":{"values":["ics","csv"],"name":"file_type","type":"com.zoho.crm.api.util.Choice"},"query":{"structure_name":"com.zoho.crm.api.bulk_read.Query","name":"query","type":"com.zoho.crm.api.bulk_read.Query","required":true},"callback":{"structure_name":"com.zoho.crm.api.bulk_read.CallBack","name":"callback","type":"com.zoho.crm.api.bulk_read.CallBack"}},"com.zoho.crm.api.org.ActionResponse":{"classes":["com.zoho.crm.api.org.SuccessResponse","com.zoho.crm.api.org.APIException"],"interface":true},"com.zoho.crm.api.related_records.ActionHandler":{"classes":["com.zoho.crm.api.related_records.APIException","com.zoho.crm.api.related_records.ActionWrapper"],"interface":true},"com.zoho.crm.api.send_mail.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"message_id","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Your mail has been sent successfully.","Your mail has been scheduled successfully."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.pipeline.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["Pipeline created","Pipeline updated","transfer pipeline scheduled successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.ConvertActionResponse":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.SuccessfulConvert"],"interface":true},"com.zoho.crm.api.record.MassUpdateResponse":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.MassUpdate"],"interface":true},"com.zoho.crm.api.field_attachments.BodyWrapper":{"file":{"name":"file","max-length":10,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.related_records.ActionResponse":{"classes":["com.zoho.crm.api.related_records.APIException","com.zoho.crm.api.related_records.SuccessResponse"],"interface":true},"com.zoho.crm.api.share_records.ActionWrapper":{"share":{"structure_name":"com.zoho.crm.api.share_records.ActionResponse","name":"share","type":"List"}},"com.zoho.crm.api.notification.ResponseWrapper":{"watch":{"structure_name":"com.zoho.crm.api.notification.Notification","name":"watch","type":"List"},"info":{"structure_name":"com.zoho.crm.api.notification.Info","name":"info","type":"com.zoho.crm.api.notification.Info"}},"com.zoho.crm.api.modules.ResponseHandler":{"classes":["com.zoho.crm.api.modules.APIException","com.zoho.crm.api.modules.ResponseWrapper"],"interface":true},"com.zoho.crm.api.org.Org":{"country":{"name":"country","type":"String"},"hierarchy_preferences":{"structure_name":"com.zoho.crm.api.org.HierarchyPreference","name":"hierarchy_preferences","type":"com.zoho.crm.api.org.HierarchyPreference"},"photo_id":{"name":"photo_id","type":"String"},"city":{"name":"city","type":"String"},"description":{"name":"description","type":"String"},"mc_status":{"name":"mc_status","type":"Boolean"},"gapps_enabled":{"name":"gapps_enabled","type":"Boolean"},"domain_name":{"name":"domain_name","type":"String"},"translation_enabled":{"name":"translation_enabled","type":"Boolean"},"street":{"name":"street","type":"String"},"currency":{"name":"currency","type":"String"},"id":{"name":"id","type":"Long","primary":true},"state":{"name":"state","type":"String"},"fax":{"name":"fax","type":"String"},"employee_count":{"name":"employee_count","type":"String"},"zip":{"name":"zip","type":"String"},"website":{"name":"website","type":"String"},"currency_symbol":{"name":"currency_symbol","type":"String"},"mobile":{"name":"mobile","type":"String"},"currency_locale":{"name":"currency_locale","type":"String"},"primary_zuid":{"name":"primary_zuid","type":"String"},"zia_portal_id":{"name":"zia_portal_id","type":"String"},"time_zone":{"name":"time_zone","type":"String"},"zgid":{"name":"zgid","type":"String"},"country_code":{"name":"country_code","type":"String"},"license_details":{"structure_name":"com.zoho.crm.api.org.LicenseDetails","name":"license_details","type":"com.zoho.crm.api.org.LicenseDetails"},"phone":{"name":"phone","type":"String"},"company_name":{"name":"company_name","type":"String"},"privacy_settings":{"name":"privacy_settings","type":"Boolean"},"primary_email":{"name":"primary_email","type":"String"},"hipaa_compliance_enabled":{"name":"hipaa_compliance_enabled","type":"Boolean"},"iso_code":{"name":"iso_code","type":"String"},"alias_1":{"name":"alias","type":"String"}},"com.zoho.crm.api.org.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.contact_roles.BodyWrapper":{"contact_roles":{"structure_name":"com.zoho.crm.api.contact_roles.ContactRole","name":"contact_roles","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.taxes.DeleteTaxesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.record.RecurringActivity":{"rrule":{"name":"RRULE","type":"String","required":true}},"com.zoho.crm.api.wizards.Screen":{"display_label":{"name":"display_label","type":"String"},"id":{"name":"id","type":"Long"},"segments":{"structure_name":"com.zoho.crm.api.wizards.Segment","name":"segments","type":"List"}},"com.zoho.crm.api.files.ActionResponse":{"classes":["com.zoho.crm.api.files.SuccessResponse","com.zoho.crm.api.files.APIException"],"interface":true},"com.zoho.crm.api.modules.Module":{"global_search_supported":{"name":"global_search_supported","type":"Boolean"},"kanban_view":{"name":"kanban_view","type":"Boolean"},"deletable":{"name":"deletable","type":"Boolean"},"description":{"name":"description","type":"String"},"creatable":{"name":"creatable","type":"Boolean"},"filter_status":{"name":"filter_status","type":"Boolean"},"inventory_template_supported":{"name":"inventory_template_supported","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"plural_label":{"name":"plural_label","type":"String"},"presence_sub_menu":{"name":"presence_sub_menu","type":"Boolean"},"triggers_supported":{"name":"triggers_supported","type":"Boolean"},"id":{"name":"id","type":"Long","primary":true},"related_list_properties":{"structure_name":"com.zoho.crm.api.modules.RelatedListProperties","name":"related_list_properties","type":"com.zoho.crm.api.modules.RelatedListProperties"},"isblueprintsupported":{"name":"isBlueprintSupported","type":"Boolean"},"per_page":{"name":"per_page","type":"Integer"},"visible":{"name":"visible","type":"Boolean"},"visibility":{"name":"visibility","type":"Integer"},"convertable":{"name":"convertable","type":"Boolean"},"editable":{"name":"editable","type":"Boolean"},"profiles":{"lookup":true,"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"},"filter_supported":{"name":"filter_supported","type":"Boolean"},"display_field":{"name":"display_field","type":"String"},"search_layout_fields":{"name":"search_layout_fields","type":"List"},"kanban_view_supported":{"name":"kanban_view_supported","type":"Boolean"},"show_as_tab":{"name":"show_as_tab","type":"Boolean"},"web_link":{"name":"web_link","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"singular_label":{"name":"singular_label","type":"String"},"viewable":{"name":"viewable","type":"Boolean"},"api_supported":{"name":"api_supported","type":"Boolean"},"api_name":{"name":"api_name","type":"String","primary":true},"quick_create":{"name":"quick_create","type":"Boolean"},"name":{"name":"name","type":"String"},"on_demand_properties":{"name":"$on_demand_properties","type":"List"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"generated_type":{"values":["default","web","custom","linking","subform"],"name":"generated_type","type":"com.zoho.crm.api.util.Choice"},"feeds_required":{"name":"feeds_required","type":"Boolean"},"scoring_supported":{"name":"scoring_supported","type":"Boolean"},"webform_supported":{"name":"webform_supported","type":"Boolean"},"arguments":{"structure_name":"com.zoho.crm.api.modules.Argument","name":"arguments","type":"List"},"emailtemplate_support":{"name":"emailTemplate_support","type":"Boolean"},"module_name":{"name":"module_name","type":"String"},"business_card_field_limit":{"name":"business_card_field_limit","type":"Integer"},"properties":{"name":"$properties","type":"List"},"custom_view":{"lookup":true,"structure_name":"com.zoho.crm.api.custom_views.CustomView","name":"custom_view","type":"com.zoho.crm.api.custom_views.CustomView"},"parent_module":{"lookup":true,"structure_name":"com.zoho.crm.api.modules.Module","name":"parent_module","type":"com.zoho.crm.api.modules.Module"},"territory":{"lookup":true,"structure_name":"com.zoho.crm.api.modules.Territory","name":"territory","type":"com.zoho.crm.api.modules.Territory"}},"com.zoho.crm.api.wizards.Node":{"pos_y":{"name":"pos_y","type":"Integer"},"pos_x":{"name":"pos_x","type":"Integer"},"start_node":{"name":"start_node","type":"Boolean"},"screen":{"structure_name":"com.zoho.crm.api.wizards.Screen","name":"screen","type":"com.zoho.crm.api.wizards.Screen"}},"com.zoho.crm.api.blue_print.Field":{"webhook":{"name":"webhook","type":"Boolean"},"criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"field_label":{"name":"field_label","type":"String"},"tooltip":{"structure_name":"com.zoho.crm.api.fields.ToolTip","name":"tooltip","type":"com.zoho.crm.api.fields.ToolTip"},"type":{"name":"_type","type":"String"},"layouts":{"structure_name":"com.zoho.crm.api.layouts.Layout","name":"layouts","type":"com.zoho.crm.api.layouts.Layout"},"field_read_only":{"name":"field_read_only","type":"Boolean"},"display_label":{"name":"display_label","type":"String"},"read_only":{"name":"read_only","type":"Boolean"},"association_details":{"structure_name":"com.zoho.crm.api.fields.AssociationDetails","name":"association_details","type":"com.zoho.crm.api.fields.AssociationDetails"},"businesscard_supported":{"name":"businesscard_supported","type":"Boolean"},"multi_module_lookup":{"structure_name":"com.zoho.crm.api.fields.MultiModuleLookup","name":"multi_module_lookup","type":"com.zoho.crm.api.fields.MultiModuleLookup"},"id":{"name":"id","type":"Long","read-only":true},"filterable":{"name":"filterable","type":"Boolean"},"visible":{"name":"visible","type":"Boolean"},"related_details":{"structure_name":"com.zoho.crm.api.fields.RelatedDetails","name":"related_details","type":"com.zoho.crm.api.fields.RelatedDetails"},"profiles":{"lookup":true,"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"},"view_type":{"structure_name":"com.zoho.crm.api.fields.ViewType","name":"view_type","type":"com.zoho.crm.api.fields.ViewType"},"personality_name":{"name":"personality_name","type":"String"},"subform":{"structure_name":"com.zoho.crm.api.fields.Module","name":"subform","type":"com.zoho.crm.api.fields.Module"},"external":{"structure_name":"com.zoho.crm.api.fields.External","name":"external","type":"com.zoho.crm.api.fields.External"},"api_name":{"name":"api_name","type":"String"},"unique":{"structure_name":"com.zoho.crm.api.fields.Unique","name":"unique","type":"com.zoho.crm.api.fields.Unique"},"pick_list_values":{"structure_name":"com.zoho.crm.api.fields.PickListValue","name":"pick_list_values","type":"List"},"system_mandatory":{"name":"system_mandatory","type":"Boolean"},"private":{"structure_name":"com.zoho.crm.api.fields.Private","name":"private","type":"com.zoho.crm.api.fields.Private"},"json_type":{"name":"json_type","type":"String"},"crypt":{"structure_name":"com.zoho.crm.api.fields.Crypt","name":"crypt","type":"com.zoho.crm.api.fields.Crypt"},"created_source":{"name":"created_source","type":"String"},"mandatory":{"name":"mandatory","type":"Boolean"},"content":{"name":"content","type":"String"},"display_type":{"values":[-1,2],"name":"display_type","type":"com.zoho.crm.api.util.Choice"},"ui_type":{"name":"ui_type","type":"Integer"},"validation_rule":{"name":"validation_rule","type":"Map"},"quick_sequence_number":{"name":"quick_sequence_number","type":"Integer"},"currency":{"structure_name":"com.zoho.crm.api.fields.Currency","name":"currency","type":"com.zoho.crm.api.fields.Currency"},"multiuserlookup":{"structure_name":"com.zoho.crm.api.fields.MultiUserLookup","name":"multiuserlookup","type":"com.zoho.crm.api.fields.MultiUserLookup"},"custom_field":{"name":"custom_field","type":"Boolean"},"lookup":{"structure_name":"com.zoho.crm.api.fields.Module","name":"lookup","type":"com.zoho.crm.api.fields.Module"},"convert_mapping":{"name":"convert_mapping","type":"Map"},"column_name":{"name":"column_name","type":"String"},"length":{"name":"length","type":"Integer"},"pick_list_values_sorted_lexically":{"name":"pick_list_values_sorted_lexically","type":"Boolean"},"default_value":{"name":"default_value","type":"String"},"sortable":{"name":"sortable","type":"Boolean"},"transition_sequence":{"name":"transition_sequence","type":"Integer"},"message":{"name":"message","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"history_tracking":{"structure_name":"com.zoho.crm.api.fields.HistoryTracking","name":"history_tracking","type":"com.zoho.crm.api.fields.HistoryTracking"},"data_type":{"name":"data_type","type":"String","read-only":true},"formula":{"structure_name":"com.zoho.crm.api.fields.Formula","name":"formula","type":"com.zoho.crm.api.fields.Formula"},"decimal_place":{"name":"decimal_place","type":"Integer"},"mass_update":{"name":"mass_update","type":"Boolean"},"blueprint_supported":{"name":"blueprint_supported","type":"Boolean"},"multiselectlookup":{"structure_name":"com.zoho.crm.api.fields.MultiSelectLookup","name":"multiselectlookup","type":"com.zoho.crm.api.fields.MultiSelectLookup"},"auto_number":{"structure_name":"com.zoho.crm.api.fields.AutoNumber","name":"auto_number","type":"com.zoho.crm.api.fields.AutoNumber"}},"com.zoho.crm.api.record.GetMassUpdateStatusParam":{"job_id":{"name":"job_id","type":"String"}},"com.zoho.crm.api.users.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.users.BodyWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.User","name":"users","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.attachments.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.attachments.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.send_mail.Template":{"classes":["com.zoho.crm.api.inventory_templates.InventoryTemplate","com.zoho.crm.api.email_templates.EmailTemplate"],"interface":true},"com.zoho.crm.api.record.Territory":{"name":{"name":"Name","type":"String"},"assigned":{"name":"$assigned","type":"String"},"id":{"required_in_update":true,"name":"id","type":"Long"},"assigned_by":{"structure_name":"com.zoho.crm.api.users.User","name":"$assigned_by","type":"com.zoho.crm.api.users.User"},"assigned_time":{"name":"$assigned_time","type":"DateTime"}},"com.zoho.crm.api.tags.RecordActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.tags.RecordActionResponse","name":"data","type":"List"},"wf_scheduler":{"name":"wf_scheduler","type":"Boolean"},"success_count":{"name":"success_count","type":"String"},"locked_count":{"name":"locked_count","type":"Integer"}},"com.zoho.crm.api.layouts.ResponseWrapper":{"layouts":{"structure_name":"com.zoho.crm.api.layouts.Layout","name":"layouts","type":"List"}},"com.zoho.crm.api.bulk_read.CallBack":{"method":{"values":["post"],"name":"method","type":"com.zoho.crm.api.util.Choice","required":true},"url":{"name":"url","type":"String","required":true}},"com.zoho.crm.api.fields.LookupField":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.bulk_read.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.bulk_read.ActionResponse","name":"data","type":"List"},"info":{"name":"info","type":"Map"}},"com.zoho.crm.api.modules.Argument":{"name":{"name":"name","type":"String"},"value":{"name":"value","type":"String"}},"com.zoho.crm.api.notes.GetNotesHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime","required":true}},"com.zoho.crm.api.custom_views.APIException":{"code":{"values":["NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","REQUIRED_PARAM_MISSING","INVALID_MODULE","INTERNAL_ERROR","INVALID_DATA"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"expected_data_type","type":"String"},{"name":"api_name","type":"String"},{"structure_name":"com.zoho.crm.api.custom_views.Range","name":"range","type":"com.zoho.crm.api.custom_views.Range"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","The given module is not supported in API","invalid data","Invalid ID","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.GetRecordsHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.notification.Notification":{"notify_on_related_action":{"name":"notify_on_related_action","type":"Boolean"},"deleteevents":{"name":"_delete_events","type":"Boolean"},"channel_expiry":{"name":"channel_expiry","type":"DateTime"},"resource_uri":{"name":"resource_uri","type":"String"},"resource_id":{"name":"resource_id","type":"String"},"notify_url":{"name":"notify_url","type":"String","required":true},"resource_name":{"name":"resource_name","type":"String"},"fields":{"name":"fields","type":"Map"},"channel_id":{"name":"channel_id","type":"Long","required":true,"primary":true},"events":{"required_in_update":true,"name":"events","type":"List","required":true},"token":{"name":"token","max-length":50,"type":"String","min-length":1}},"com.zoho.crm.api.bulk_write.FieldMapping":{"module_1":{"name":"module","type":"String"},"api_name":{"name":"api_name","type":"String","required":true},"format":{"name":"format","type":"String"},"find_by":{"name":"find_by","type":"String"},"index":{"name":"index","type":"Integer"},"default_value":{"name":"default_value","type":"Map"}},"com.zoho.crm.api.contact_roles.ActionWrapper":{"contact_roles":{"structure_name":"com.zoho.crm.api.contact_roles.ActionResponse","name":"contact_roles","type":"List"}},"com.zoho.crm.api.modules.BodyWrapper":{"modules":{"structure_name":"com.zoho.crm.api.modules.Module","name":"modules","max-length":1,"type":"List","min-length":1}},"com.zoho.crm.api.pipeline.TransferActionWrapper":{"transfer_pipeline":{"structure_name":"com.zoho.crm.api.pipeline.TransferActionResponse","name":"transfer_pipeline","type":"List"}},"com.zoho.crm.api.record.DeletedRecordsWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.DeletedRecord","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.record.Comment":{"commented_by":{"name":"commented_by","type":"String"},"commented_time":{"name":"commented_time","type":"DateTime"},"comment_content":{"name":"comment_content","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.Reminder":{"period":{"name":"period","type":"String","required":true},"unit":{"name":"unit","type":"String","required":true}},"com.zoho.crm.api.blue_print.ResponseWrapper":{"blueprint":{"structure_name":"com.zoho.crm.api.blue_print.BluePrint","name":"blueprint","type":"com.zoho.crm.api.blue_print.BluePrint"}},"com.zoho.crm.api.blue_print.ValidationError":{"api_name":{"name":"api_name","type":"String"},"index":{"name":"index","type":"Integer"},"parent_api_name":{"name":"parent_api_name","type":"String"},"message":{"name":"message","type":"String"},"info_message":{"name":"info_message","type":"String"}},"com.zoho.crm.api.variables.GetVariableForAPINameParam":{"group":{"name":"group","type":"String","required":true}},"com.zoho.crm.api.fields.ToolTip":{"name":{"name":"name","type":"String"},"value":{"name":"value","type":"String"}},"com.zoho.crm.api.tags.MergeWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.ConflictWrapper","name":"tags","max-length":1,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.record.MassUpdateResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.MassUpdateResponse","name":"data","type":"List"}},"com.zoho.crm.api.assignment_rules.DefaultUser":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"String"}},"com.zoho.crm.api.query.ResponseHandler":{"classes":["com.zoho.crm.api.query.ResponseWrapper","com.zoho.crm.api.query.APIException"],"interface":true},"com.zoho.crm.api.inventory_templates.ResponseHandler":{"classes":["com.zoho.crm.api.inventory_templates.ResponseWrapper","com.zoho.crm.api.inventory_templates.APIException"],"interface":true},"com.zoho.crm.api.modules.ResponseWrapper":{"modules":{"structure_name":"com.zoho.crm.api.modules.Module","name":"modules","type":"List"}},"com.zoho.crm.api.share_records.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["record will be shared successfully","Sharing Revoked"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.share_records.ActionHandler":{"classes":["com.zoho.crm.api.share_records.APIException","com.zoho.crm.api.share_records.ActionWrapper"],"interface":true},"com.zoho.crm.api.wizards.Container":{"layout":{"structure_name":"com.zoho.crm.api.layouts.Layout","name":"layout","type":"com.zoho.crm.api.layouts.Layout"},"chart_data":{"structure_name":"com.zoho.crm.api.wizards.ChartData","name":"chart_data","type":"com.zoho.crm.api.wizards.ChartData"},"screens":{"structure_name":"com.zoho.crm.api.wizards.Screen","name":"screens","type":"List"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.GetRecordParam":{"cvid":{"name":"cvid","type":"String"},"uid":{"name":"uid","type":"String"},"approved":{"name":"approved","type":"String"},"startDateTime":{"name":"startDateTime","type":"DateTime"},"include_child":{"name":"include_child","type":"String"},"converted":{"name":"converted","type":"String"},"fields":{"name":"fields","type":"String"},"endDateTime":{"name":"endDateTime","type":"DateTime"},"territory_id":{"name":"territory_id","type":"String"}},"com.zoho.crm.api.attachments.ActionResponse":{"classes":["com.zoho.crm.api.attachments.SuccessResponse","com.zoho.crm.api.attachments.APIException"],"interface":true},"com.zoho.crm.api.bulk_write.ActionResponse":{"classes":["com.zoho.crm.api.bulk_write.SuccessResponse","com.zoho.crm.api.bulk_write.APIException"],"interface":true},"com.zoho.crm.api.record.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.notes.ActionHandler":{"classes":["com.zoho.crm.api.notes.ActionWrapper","com.zoho.crm.api.notes.APIException"],"interface":true},"com.zoho.crm.api.related_lists.ResponseWrapper":{"related_lists":{"structure_name":"com.zoho.crm.api.related_lists.RelatedList","name":"related_lists","type":"List"}},"com.zoho.crm.api.bulk_write.CallBack":{"method":{"values":["post"],"name":"method","type":"com.zoho.crm.api.util.Choice","required":true},"url":{"name":"url","type":"String","required":true}},"com.zoho.crm.api.bulk_read.Query":{"cvid":{"name":"cvid","type":"String"},"module_1":{"structure_name":"com.zoho.crm.api.modules.Module","name":"module","type":"com.zoho.crm.api.modules.Module","required":true},"criteria":{"structure_name":"com.zoho.crm.api.bulk_read.Criteria","name":"criteria","type":"com.zoho.crm.api.bulk_read.Criteria"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"List"}},"com.zoho.crm.api.fields.ResponseHandler":{"classes":["com.zoho.crm.api.fields.APIException","com.zoho.crm.api.fields.ResponseWrapper"],"interface":true},"com.zoho.crm.api.org.HierarchyPreference":{"type":{"name":"type","type":"String"}},"com.zoho.crm.api.pipeline.TransferActionResponse":{"classes":["com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.SuccessResponse"],"interface":true},"com.zoho.crm.api.territories.APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","CURRENCIES_NOT_ENABLED","FEATURE_NOT_SUPPORTED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The id given seems to be invalid.","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.ResponseHandler":{"classes":["com.zoho.crm.api.users.ResponseWrapper","com.zoho.crm.api.users.APIException"],"interface":true},"com.zoho.crm.api.currencies.BaseCurrencyActionHandler":{"classes":["com.zoho.crm.api.currencies.APIException","com.zoho.crm.api.currencies.BaseCurrencyActionWrapper"],"interface":true},"com.zoho.crm.api.org.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["photo uploaded successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.Theme":{"normal_tab":{"lookup":true,"structure_name":"com.zoho.crm.api.users.TabTheme","name":"normal_tab","type":"com.zoho.crm.api.users.TabTheme"},"selected_tab":{"lookup":true,"structure_name":"com.zoho.crm.api.users.TabTheme","name":"selected_tab","type":"com.zoho.crm.api.users.TabTheme"},"new_background":{"name":"new_background","type":"String"},"background":{"name":"background","type":"String"},"screen":{"name":"screen","type":"String"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.record.ActionResponse":{"classes":["com.zoho.crm.api.record.SuccessResponse","com.zoho.crm.api.record.APIException"],"interface":true},"com.zoho.crm.api.record.ImageUpload":{"sequence_number":{"name":"Sequence_Number","type":"Integer"},"size":{"name":"Size","type":"Long"},"encrypted_id":{"name":"Encrypted_Id","type":"String"},"preview_id":{"name":"Preview_Id","type":"String"},"file_name":{"name":"File_Name","type":"String"},"file_id":{"name":"File_Id","type":"String"},"description":{"name":"Description","type":"String"},"state":{"name":"State","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.pipeline.Pipeline":{"display_value":{"name":"display_value","type":"String","required":true},"parent":{"structure_name":"com.zoho.crm.api.pipeline.Pipeline","name":"parent","type":"com.zoho.crm.api.pipeline.Pipeline"},"default":{"name":"default","type":"Boolean"},"maps":{"structure_name":"com.zoho.crm.api.pipeline.PickListValue","name":"maps","type":"List","required":true},"from":{"name":"from","type":"Long"},"actual_value":{"name":"actual_value","type":"String"},"to":{"name":"to","type":"Long"},"id":{"name":"id","type":"Long","primary":true},"child_available":{"name":"child_available","type":"Boolean"}},"com.zoho.crm.api.related_records.APIException":{"code":{"values":["NO_PERMISSION","CANNOT_BE_UPDATED","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"id","type":"Long"},{"name":"param_name","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid data","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.pipeline.TransferAndDeleteParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.layouts.GetLayoutsParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.notification.ActionWrapper":{"watch":{"structure_name":"com.zoho.crm.api.notification.ActionResponse","name":"watch","type":"List"}},"com.zoho.crm.api.modules.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","INVALID_MODULE","INVALID_DATA","LIMIT_EXCEEDED","DUPLICATE_DATA","NOT_ALLOWED","NO_PERMISSION"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"json_path","type":"String"},{"name":"limit","type":"Integer"},{"name":"maximum_length","type":"Integer"},{"name":"permissions","type":"List"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the given module is not supported in api","invalid data","Api name duplicate","Api name is not valid","System keyword not allowed in api name","Api name update not allowed","No permission to update API name","permission denied to access the module","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.DeleteRecordsParam":{"wf_trigger":{"name":"wf_trigger","type":"String"},"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.contact_roles.ContactRole":{"sequence_number":{"name":"sequence_number","type":"Integer"},"name":{"unique":true,"name":"name","type":"String","required":true},"id":{"name":"id","type":"Long","primary":true}},"com.zoho.crm.api.send_mail.ActionResponse":{"classes":["com.zoho.crm.api.send_mail.APIException","com.zoho.crm.api.send_mail.SuccessResponse"],"interface":true},"com.zoho.crm.api.record.DeletedRecord":{"deleted_by":{"structure_name":"com.zoho.crm.api.users.User","name":"deleted_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"display_name":{"name":"display_name","type":"String"},"type":{"name":"type","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"deleted_time":{"name":"deleted_time","type":"DateTime"}},"com.zoho.crm.api.taxes.ResponseHandler":{"classes":["com.zoho.crm.api.taxes.APIException","com.zoho.crm.api.taxes.ResponseWrapper"],"interface":true},"com.zoho.crm.api.users.GetUsersParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"type":{"name":"type","type":"String","required":true}},"com.zoho.crm.api.related_records.GetRelatedRecordsParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"}},"com.zoho.crm.api.related_records.ResponseHandler":{"classes":["com.zoho.crm.api.related_records.APIException","com.zoho.crm.api.related_records.ResponseWrapper","com.zoho.crm.api.related_records.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.assignment_rules.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","REQUIRED_PARAM_MISSING","","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid oneInternal server error occurred.","the id given seems to be invalid","One of the expected parameter is missing","You do not have the permission to read the assignment rules.","The request URL has syntactical errors."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.contact_roles.ResponseWrapper":{"contact_roles":{"structure_name":"com.zoho.crm.api.contact_roles.ContactRole","name":"contact_roles","type":"List"}},"com.zoho.crm.api.custom_views.GetCustomViewParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.attachments.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"Modified_Time","type":"DateTime"},{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},{"name":"Created_Time","type":"DateTime"},{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"}],"name":"details","type":"Map"},"message":{"values":["attachment uploaded successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notes.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"Modified_Time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},{"name":"Created_Time","type":"DateTime"},{"name":"id","type":"Long"},{"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"}],"name":"details","type":"Map"},"message":{"values":["record added","record updated","record deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.modules.GetModulesHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.record.ActionHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.ActionWrapper"],"interface":true},"com.zoho.crm.api.variables.ResponseHandler":{"classes":["com.zoho.crm.api.variables.ResponseWrapper","com.zoho.crm.api.variables.APIException"],"interface":true},"com.zoho.crm.api.bulk_read.ActionResponse":{"classes":["com.zoho.crm.api.bulk_read.SuccessResponse","com.zoho.crm.api.bulk_read.APIException"],"interface":true},"com.zoho.crm.api.attachments.DeleteAttachmentsParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.fields.GetFieldParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.bulk_read.JobDetail":{"result":{"structure_name":"com.zoho.crm.api.bulk_read.Result","name":"result","type":"com.zoho.crm.api.bulk_read.Result"},"created_time":{"name":"created_time","type":"DateTime"},"file_type":{"name":"file_type","type":"String"},"query":{"structure_name":"com.zoho.crm.api.bulk_read.Query","name":"query","type":"com.zoho.crm.api.bulk_read.Query"},"id":{"name":"id","type":"Long","primary":true},"state":{"values":["COMPLETED","IN PROGRESS","ADDED","FAILURE"],"name":"state","type":"com.zoho.crm.api.util.Choice"},"operation":{"name":"operation","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"}},"com.zoho.crm.api.profiles.DefaultView":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.pipeline.TransferActionHandler":{"classes":["com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.TransferActionWrapper"],"interface":true},"com.zoho.crm.api.roles.ResponseWrapper":{"roles":{"structure_name":"com.zoho.crm.api.roles.Role","name":"roles","type":"List"}},"com.zoho.crm.api.blue_print.NextTransition":{"name":{"name":"name","type":"String"},"criteria_matched":{"name":"criteria_matched","type":"Boolean"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.related_records.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.send_mail.UserAddress":{"default":{"name":"default","type":"Boolean"},"user_name":{"name":"user_name","type":"String"},"id":{"name":"id","type":"Long","primary":true},"type":{"name":"type","type":"String"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.record.Criteria":{"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com.zoho.crm.api.util.Choice"},"field":{"name":"field","type":"String"},"group_operator":{"values":["and","or"],"name":"group_operator","type":"com.zoho.crm.api.util.Choice"},"value":{"name":"value","type":"Object"},"group":{"lookup":true,"structure_name":"com.zoho.crm.api.record.Criteria","name":"group","type":"List"}},"com.zoho.crm.api.record.ConvertActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.ConvertActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.share_records.DeleteActionHandler":{"classes":["com.zoho.crm.api.share_records.APIException","com.zoho.crm.api.share_records.DeleteActionWrapper"],"interface":true},"com.zoho.crm.api.fields.MultiSelectLookup":{"display_label":{"name":"display_label","type":"String"},"linking_module":{"name":"linking_module","type":"String"},"lookup_apiname":{"name":"lookup_apiname","type":"String"},"api_name":{"name":"api_name","type":"String"},"connected_module":{"name":"connected_module","type":"String"},"connectedlookup_apiname":{"name":"connectedlookup_apiname","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.Participants":{"name":{"name":"name","type":"String"},"invited":{"name":"invited","type":"Boolean"},"type":{"name":"type","type":"String","required":true},"email":{"name":"Email","type":"String"},"participant":{"name":"participant","type":"String","required":true},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.tags.RemoveTagsFromMultipleRecordsParam":{"ids":{"name":"ids","type":"Long","required":true},"tag_names":{"name":"tag_names","type":"String","required":true}},"com.zoho.crm.api.record.SearchRecordsParam":{"per_page":{"name":"per_page","type":"Integer"},"approved":{"name":"approved","type":"String"},"phone":{"name":"phone","type":"String"},"converted":{"name":"converted","type":"String"},"criteria":{"name":"criteria","type":"String"},"page":{"name":"page","type":"Integer"},"word":{"name":"word","type":"String"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.variables.DeleteVariablesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.tags.ActionWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.ActionResponse","name":"tags","type":"List"}},"com.zoho.crm.api.assignment_rules.ResponseWrapper":{"assignment_rules":{"structure_name":"com.zoho.crm.api.assignment_rules.AssignmentRule","name":"assignment_rules","type":"List"}},"com.zoho.crm.api.send_mail.ResponseWrapper":{"from_addresses":{"structure_name":"com.zoho.crm.api.send_mail.UserAddress","name":"from_addresses","type":"List"}},"com.zoho.crm.api.record.GetDeletedRecordsParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.territories.ResponseHandler":{"classes":["com.zoho.crm.api.territories.APIException","com.zoho.crm.api.territories.ResponseWrapper"],"interface":true},"com.zoho.crm.api.tags.RecordActionResponse":{"classes":["com.zoho.crm.api.tags.SuccessResponse","com.zoho.crm.api.tags.APIException"],"interface":true},"com.zoho.crm.api.users.ActionHandler":{"classes":["com.zoho.crm.api.users.ActionWrapper","com.zoho.crm.api.users.APIException"],"interface":true},"com.zoho.crm.api.record.RemindAt":{"alarm":{"name":"ALARM","type":"String","required":true}},"com.zoho.crm.api.record.DownloadHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.share_records.DeleteActionResponse":{"classes":["com.zoho.crm.api.share_records.SuccessResponse","com.zoho.crm.api.share_records.APIException"],"interface":true},"com.zoho.crm.api.org.ResponseHandler":{"classes":["com.zoho.crm.api.org.ResponseWrapper","com.zoho.crm.api.org.APIException"],"interface":true},"com.zoho.crm.api.users.User":{"country":{"name":"country","type":"String"},"customize_info":{"lookup":true,"structure_name":"com.zoho.crm.api.users.CustomizeInfo","name":"customize_info","type":"com.zoho.crm.api.users.CustomizeInfo"},"role":{"lookup":true,"structure_name":"com.zoho.crm.api.roles.Role","name":"role","type":"com.zoho.crm.api.roles.Role","required":true},"signature":{"name":"signature","type":"String"},"city":{"name":"city","type":"String"},"sort_order_preference":{"name":"sort_order_preference","type":"String"},"name_format":{"name":"name_format","type":"String"},"language":{"name":"language","type":"String"},"reporting_to":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Reporting_To","type":"com.zoho.crm.api.users.User"},"locale":{"name":"locale","type":"String"},"microsoft":{"name":"microsoft","type":"Boolean"},"personal_account":{"name":"personal_account","type":"Boolean"},"sandboxdeveloper":{"name":"sandboxDeveloper","type":"Boolean"},"isonline":{"name":"Isonline","type":"Boolean"},"default_tab_group":{"name":"default_tab_group","type":"String"},"street":{"name":"street","type":"String"},"currency":{"name":"Currency","type":"String"},"theme":{"lookup":true,"structure_name":"com.zoho.crm.api.users.Theme","name":"theme","type":"com.zoho.crm.api.users.Theme"},"state":{"name":"state","type":"String"},"fax":{"name":"fax","type":"String"},"country_locale":{"name":"country_locale","type":"String"},"first_name":{"name":"first_name","type":"String"},"email":{"name":"email","type":"String","required":true},"decimal_separator":{"name":"decimal_separator","type":"String"},"zip":{"name":"zip","type":"String"},"website":{"name":"website","type":"String"},"time_format":{"name":"time_format","type":"String"},"offset":{"name":"offset","type":"Long"},"profile":{"lookup":true,"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profile","type":"com.zoho.crm.api.profiles.Profile","required":true},"mobile":{"name":"mobile","type":"String"},"last_name":{"name":"last_name","type":"String","required":true},"time_zone":{"name":"time_zone","type":"String"},"zuid":{"name":"zuid","type":"String"},"confirm":{"name":"confirm","type":"Boolean"},"full_name":{"name":"full_name","type":"String"},"territories":{"lookup":true,"structure_name":"com.zoho.crm.api.users.Territory","name":"territories","type":"List"},"phone":{"name":"phone","type":"String"},"dob":{"name":"dob","type":"String"},"name":{"name":"name","type":"String"},"date_format":{"name":"date_format","type":"String"},"alias_1":{"name":"alias","type":"String"},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.tags.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"created_time","type":"DateTime"},{"name":"modified_time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},{"name":"id","type":"Long"},{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},{"structure_name":"com.zoho.crm.api.tags.Tag","name":"tags","type":"List"}],"name":"details","type":"Map"},"message":{"values":["tags created successfully","tags updated successfully","tags deleted successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.currencies.ResponseHandler":{"classes":["com.zoho.crm.api.currencies.ResponseWrapper","com.zoho.crm.api.currencies.APIException"],"interface":true},"com.zoho.crm.api.related_lists.ResponseHandler":{"classes":["com.zoho.crm.api.related_lists.ResponseWrapper","com.zoho.crm.api.related_lists.APIException"],"interface":true},"com.zoho.crm.api.related_records.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.related_records.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.share_records.ResponseWrapper":{"share":{"structure_name":"com.zoho.crm.api.share_records.ShareRecord","name":"share","type":"List"},"shareable_user":{"structure_name":"com.zoho.crm.api.users.User","name":"shareable_user","type":"List"}},"com.zoho.crm.api.share_records.ResponseHandler":{"classes":["com.zoho.crm.api.share_records.APIException","com.zoho.crm.api.share_records.ResponseWrapper"],"interface":true},"com.zoho.crm.api.variables.GetVariableByIDParam":{"group":{"name":"group","type":"String","required":true}},"com.zoho.crm.api.attachments.Attachment":{"owner":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Owner","type":"com.zoho.crm.api.users.User"},"created_time":{"name":"Created_Time","type":"DateTime"},"file_name":{"name":"File_Name","type":"String"},"editable":{"name":"$editable","type":"Boolean"},"se_module":{"name":"$se_module","type":"String"},"description":{"name":"description","type":"String"},"type":{"name":"$type","type":"String"},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"size":{"name":"Size","type":"Long"},"sharing_permission":{"name":"$sharing_permission","type":"String"},"attachment_type":{"name":"$attachment_type","type":"Integer"},"parent_id":{"lookup":true,"structure_name":"com.zoho.crm.api.record.Record","name":"Parent_Id","type":"com.zoho.crm.api.record.Record"},"file_id":{"name":"$file_id","type":"String"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},"link_url":{"name":"$link_url","type":"String"},"state":{"name":"$state","type":"String"},"id":{"name":"id","type":"String","primary":true},"category":{"name":"category","type":"String"}},"com.zoho.crm.api.bulk_write.Result":{"download_url":{"name":"download_url","type":"String"}},"com.zoho.crm.api.pipeline.Stage":{"from":{"name":"from","type":"Long","required":true},"to":{"name":"to","type":"Long","required":true}},"com.zoho.crm.api.notes.ActionResponse":{"classes":["com.zoho.crm.api.notes.SuccessResponse","com.zoho.crm.api.notes.APIException"],"interface":true},"com.zoho.crm.api.files.GetFileParam":{"id":{"name":"id","type":"String","required":true}},"com.zoho.crm.api.pipeline.UpdatePipelinesParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.email_templates.APIException":{"code":{"values":["FEATURE_NOT_SUPPORTED","INVALID_MODULE","NO_PERMISSION","INTERNAL_ERROR","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["the module name given seems to be invalid","feature not available in this edition","permission denied","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.files.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"name","type":"String"},{"name":"id","type":"String"}],"name":"details","type":"Map"},"message":{"values":["uploaded Succeessfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.wizards.ChartData":{"canvas_width":{"name":"canvas_width","type":"Integer"},"nodes":{"structure_name":"com.zoho.crm.api.wizards.Node","name":"nodes","type":"List"},"canvas_height":{"name":"canvas_height","type":"Integer"},"connections":{"structure_name":"com.zoho.crm.api.wizards.Connection","name":"connections","type":"List"}},"com.zoho.crm.api.attachments.ActionHandler":{"classes":["com.zoho.crm.api.attachments.APIException","com.zoho.crm.api.attachments.ActionWrapper"],"interface":true},"com.zoho.crm.api.record.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.bulk_read.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_SERVICE_NAME","INVALID_BULK_OPERATION","RESOURCE_NOT_FOUND","MEDIA_TYPE_NOT_SUPPORTED","REQUEST_BODY_NOT_READABLE","REQUEST_BODY_IS_EMPTY","MODULE_NOT_AVAILABLE","NOT_SUPPORTED_FEATURE","NO_PERMISSION","MODULE_NOT_SUPPORTED","JOB_NOT_SUPPORTED","QUERY_NOT_SUPPORTED","INVALID_CALLBACK_URL","INVALID_CALLBACK_METHOD","JOIN_LIMIT_EXCEEDED","CRITERIA_NOT_SUPPORTED","INVALID_CRITERIA","AMBIGUOUS_CRITERIA","AMBIGUOUS_GROUP_IN_CRITERIA","CRITERIA_LIMIT_EXCEEDED","FIELD_IN_CRITERIA_NOT_SUPPORTED","FIELD_AND_COMPARATOR_IN_CRITERIA_NOT_COMPATIBLE","FIELD_IN_CRITERIA_NOT_AVAILABLE","FIELD_COMPARATOR_IN_CRITERIA_NOT_SUPPORTED","VALUE_IN_CRITERIA_NOT_SUPPORTED","FIELD_AND_VALUE_IN_CRITERIA_NOT_COMPATIBLE","COMPARATOR_AND_VALUE_IN_CRITERIA_NOT_COMPATIBLE","COMPARATOR_AND_ENCRYPTED_VALUE_IN_CRITERIA_NOT_COMPATIBLE","GROUP_OPERATOR_NOT_SUPPORTED","FIELD_NOT_AVAILABLE","FIELD_NOT_SUPPORTED","VALUE_LIMIT_EXCEEDED_IN_CRITERIA","PAGE_NOT_SUPPORTED","PAGE_RANGE_EXCEEDED","TOO_MANY_REQUESTS","CALLBACK_FAILURE","INTERNAL_SERVER_ERROR","INTERNAL_ERROR","OAUTH_SCOPE_MISMATCH","AUTHORIZATION_FAILED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"resource","type":"String"},{"name":"message","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"info_message","type":"String"},{"name":"parent_api_name","type":"String"},{"name":"comparator","type":"String"},{"name":"value","type":"String"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Provided service name %s is not valid/not supported","Requested operation is an invalid bulk operation","record not in process","The requested resource doesn't exist.","Media type is not supported.","Unable to parse the request body.","Request body is empty.","Requested module '%s' is not available.","Feature is not supported"," permission denied","Invalid module for the query. Module '%s' is not supported.","Invalid bulk %s job.","Invalid query for bulk %s job. Query '%s' is not supported.","Invalid URL '%s' for callback.","Invalid request method %s for callback.","Join limit exceeded for the query. Maximum number of joins supported in a query is %d","Invalid criteria for the query. Criteria %s is not supported.","Invalid criteria %s for the query.","Ambiguous criteria %s. Criteria can have either {group"," group_operator} or {api_name"," comparator"," value}.","Ambiguous group in criteria %s. Group should be used only when there are more than one criteria","Number of criteria exceeded the maximum limit of %d","Field api name '%s' for criteria %s is not supported.","Field api name '%s' is not supported with comparator '%s' for criteria %s.","Field api name '%s' is not available for criteria %s. Check visibility and permission for the field","Field api name '%s' doesn't support this comparator '%s' for criteria %s.","Value '%s' is not supported for criteria %s.","Field '%s' is not supported with value '%s' for criteria %s.","Comparator '%s' is not supported with value '%s' for criteria %s.","Comparator '%s' is not supported with value '%s' for criteria %s as the value is encrypted.","Criteria %s doesn't support this logical group operator '%s'. Supported operators are 'and'"," 'or'.","Requested field api name '%s' is not available for the module '%s'. Check permission or visibility for the field.","Invalid field for the module provided in fields. Field api name '%s' is not supported for this module '%s'.","Value exceeded limit %d","Invalid page number for query. Page %s is not supported for the query.","Invalid page number for query. Page %s is not supported for the query. Page range is from %d to %d.","Many requests fired in concurrent than the allowed limit","Callback failed after %d attempts.","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.CarryOverTags":{"deals":{"name":"Deals","type":"List"},"accounts":{"name":"Accounts","type":"List"},"contacts":{"name":"Contacts","type":"List"}},"com.zoho.crm.api.fields.GetFieldsParam":{"module_1":{"name":"module","type":"String"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.files.BodyWrapper":{"file":{"name":"file","max-length":10,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.tags.AddTagsToMultipleRecordsParam":{"ids":{"name":"ids","type":"Long","required":true},"over_write":{"name":"over_write","type":"String"},"tag_names":{"name":"tag_names","type":"String","required":true}},"com.zoho.crm.api.currencies.Format":{"decimal_separator":{"values":["Period","Comma"],"name":"decimal_separator","type":"com.zoho.crm.api.util.Choice","required":true},"thousand_separator":{"values":["Period","Comma","Space"],"name":"thousand_separator","type":"com.zoho.crm.api.util.Choice","required":true},"decimal_places":{"required_in_update":true,"values":["0","2","3"],"name":"decimal_places","type":"com.zoho.crm.api.util.Choice","required":true}},"com.zoho.crm.api.currencies.ResponseWrapper":{"currencies":{"structure_name":"com.zoho.crm.api.currencies.Currency","name":"currencies","type":"List"}},"com.zoho.crm.api.users.TabTheme":{"font_color":{"name":"font_color","type":"String"},"background":{"name":"background","type":"String"}},"com.zoho.crm.api.profiles.Profile":{"created_time":{"name":"created_time","type":"DateTime"},"defaultview":{"structure_name":"com.zoho.crm.api.profiles.DefaultView","name":"_default_view","type":"com.zoho.crm.api.profiles.DefaultView"},"custom":{"name":"custom","type":"Boolean"},"description":{"name":"description","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"delete":{"name":"_delete","type":"Boolean"},"sections":{"structure_name":"com.zoho.crm.api.profiles.Section","name":"sections","type":"List"},"display_label":{"name":"display_label","type":"String"},"default":{"name":"default","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"permission_type":{"name":"permission_type","type":"String"},"permissions_details":{"structure_name":"com.zoho.crm.api.profiles.PermissionDetail","name":"permissions_details","type":"List"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true}},"com.zoho.crm.api.fields.Module":{"layout":{"structure_name":"com.zoho.crm.api.layouts.Layout","name":"layout","type":"com.zoho.crm.api.layouts.Layout"},"display_label":{"name":"display_label","type":"String"},"module_1":{"name":"module","type":"String"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"},"module_name":{"name":"module_name","type":"String"}},"com.zoho.crm.api.territories.Territory":{"created_time":{"name":"created_time","type":"DateTime"},"modified_time":{"name":"modified_time","type":"DateTime"},"permission_type":{"name":"permission_type","type":"String"},"manager":{"structure_name":"com.zoho.crm.api.users.User","name":"manager","type":"com.zoho.crm.api.users.User"},"account_rule_criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"account_rule_criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true},"reporting_to":{"structure_name":"com.zoho.crm.api.territories.Territory","name":"reporting_to","type":"com.zoho.crm.api.territories.Territory"},"deal_rule_criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"deal_rule_criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"}},"com.zoho.crm.api.currencies.Currency":{"symbol":{"name":"symbol","type":"String","required":true},"created_time":{"name":"created_time","type":"DateTime"},"is_active":{"name":"is_active","type":"Boolean"},"exchange_rate":{"name":"exchange_rate","type":"String","required":true},"format":{"structure_name":"com.zoho.crm.api.currencies.Format","name":"format","type":"com.zoho.crm.api.currencies.Format","required":true},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"prefix_symbol":{"name":"prefix_symbol","type":"Boolean"},"is_base":{"name":"is_base","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"name":{"name":"name","type":"String","required":true},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"iso_code":{"name":"iso_code","type":"String","required":true}},"com.zoho.crm.api.variables.ResponseWrapper":{"variables":{"structure_name":"com.zoho.crm.api.variables.Variable","name":"variables","type":"List"}},"com.zoho.crm.api.fields.MultiUserLookup":{"display_label":{"name":"display_label","type":"String"},"linking_module":{"name":"linking_module","type":"String"},"lookup_apiname":{"name":"lookup_apiname","type":"String"},"api_name":{"name":"api_name","type":"String"},"connected_module":{"name":"connected_module","type":"String"},"connectedlookup_apiname":{"name":"connectedlookup_apiname","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.FileHandler":{"classes":["com.zoho.crm.api.record.SuccessResponse","com.zoho.crm.api.record.APIException"],"interface":true},"com.zoho.crm.api.share_records.DeleteActionWrapper":{"share":{"structure_name":"com.zoho.crm.api.share_records.DeleteActionResponse","name":"share","interface":true,"type":"com.zoho.crm.api.share_records.DeleteActionResponse"}},"com.zoho.crm.api.roles.ResponseHandler":{"classes":["com.zoho.crm.api.roles.APIException","com.zoho.crm.api.roles.ResponseWrapper"],"interface":true},"com.zoho.crm.api.taxes.ResponseWrapper":{"preference":{"structure_name":"com.zoho.crm.api.taxes.Preference","name":"preference","type":"com.zoho.crm.api.taxes.Preference"},"taxes":{"structure_name":"com.zoho.crm.api.taxes.Tax","name":"taxes","type":"List"}},"com.zoho.crm.api.send_mail.ResponseHandler":{"classes":["com.zoho.crm.api.send_mail.APIException","com.zoho.crm.api.send_mail.ResponseWrapper"],"interface":true},"com.zoho.crm.api.taxes.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"name","type":"String"},{"name":"value","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["tax added","record updated","tax deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.GetUserHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.record.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.currencies.BodyWrapper":{"currencies":{"structure_name":"com.zoho.crm.api.currencies.Currency","name":"currencies","max-length":10,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.bulk_write.APIException":{"error_message":{"values":["Bad Request"],"name":"ERROR_MESSAGE","type":"com.zoho.crm.api.util.Choice"},"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","FILE_TOO_LARGE","INVALID_FILE_FORMAT","MANDATORY_FIELDS_NOT_MAPPED","MANDATORY_NOT_FOUND","INVALID_FIELD","INVALID_FORMAT","INVALID_FILE_ID","HEADER_LIMIT_EXCEEDED","COLUMN_INDEX_NOT_FOUND","MODULE_NOT_AVAILABLE","INVALID_DATA","DUPLICATE_DATA","NOT_APPROVED","BLOCKED_RECORD","CANNOT_PROCESS","LIMIT_EXCEEDED","RESOURCE_NOT_FOUND","MISSING_REQUIRED_KEY","INVALID_FIELD_NAME","FILE_NOT_SUPPORTED","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"x_info":{"values":["Link not valid"],"name":"x-info","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"error_code":{"name":"ERROR_CODE","type":"Integer"},"http_status":{"name":"http_status","type":"String"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","invalid file format. only zip format is supported","File size too large to process","The requested resource doesn't exist.","required key operation is not found in request body.","improper file id","required key index for field Company is not found in request body.","All mandatory fields are not mapped for the layout","Requested module 'asdf' is not available.","invalid mapping. invalid api_name ast_Name.","File not supported for bulk write","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"x_error":{"values":["check if headers [feature:X-CRM-ORG] are present and valid"],"name":"x-error","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"},"info":{"values":["Forbidden"],"name":"info","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.inventory_templates.GetInventoryTemplatesParam":{"module_1":{"name":"module","type":"String"},"sort_by":{"name":"sort_by","type":"String"},"category":{"name":"category","type":"String"},"sort_order":{"name":"sort_order","type":"String"}},"com.zoho.crm.api.notes.BodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.notes.Note","name":"data","max-length":100,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.util.Model":{"classes":["com.zoho.crm.api.inventory_templates.ResponseWrapper","com.zoho.crm.api.inventory_templates.InventoryTemplate","com.zoho.crm.api.inventory_templates.APIException","com.zoho.crm.api.attachments.SuccessResponse","com.zoho.crm.api.attachments.APIException","com.zoho.crm.api.attachments.Attachment","com.zoho.crm.api.attachments.ActionWrapper","com.zoho.crm.api.attachments.ResponseWrapper","com.zoho.crm.api.attachments.FileBodyWrapper","com.zoho.crm.api.notes.ActionWrapper","com.zoho.crm.api.notes.SuccessResponse","com.zoho.crm.api.notes.BodyWrapper","com.zoho.crm.api.notes.APIException","com.zoho.crm.api.notes.Info","com.zoho.crm.api.notes.ResponseWrapper","com.zoho.crm.api.notes.Note","com.zoho.crm.api.roles.Role","com.zoho.crm.api.roles.APIException","com.zoho.crm.api.roles.ResponseWrapper","com.zoho.crm.api.related_lists.ResponseWrapper","com.zoho.crm.api.related_lists.RelatedList","com.zoho.crm.api.related_lists.APIException","com.zoho.crm.api.taxes.Preference","com.zoho.crm.api.taxes.ActionWrapper","com.zoho.crm.api.taxes.SuccessResponse","com.zoho.crm.api.taxes.APIException","com.zoho.crm.api.taxes.ResponseWrapper","com.zoho.crm.api.taxes.BodyWrapper","com.zoho.crm.api.taxes.Tax","com.zoho.crm.api.email_templates.APIException","com.zoho.crm.api.email_templates.Attachment","com.zoho.crm.api.email_templates.EmailTemplate","com.zoho.crm.api.email_templates.ResponseWrapper","com.zoho.crm.api.layouts.ResponseWrapper","com.zoho.crm.api.layouts.Section","com.zoho.crm.api.layouts.APIException","com.zoho.crm.api.layouts.Properties","com.zoho.crm.api.layouts.Layout","com.zoho.crm.api.bulk_write.CallBack","com.zoho.crm.api.bulk_write.SuccessResponse","com.zoho.crm.api.bulk_write.RequestWrapper","com.zoho.crm.api.bulk_write.APIException","com.zoho.crm.api.bulk_write.BulkWriteResponse","com.zoho.crm.api.bulk_write.File","com.zoho.crm.api.bulk_write.Resource","com.zoho.crm.api.bulk_write.FieldMapping","com.zoho.crm.api.bulk_write.FileBodyWrapper","com.zoho.crm.api.bulk_write.Result","com.zoho.crm.api.custom_views.Translation","com.zoho.crm.api.custom_views.SharedTo","com.zoho.crm.api.custom_views.ResponseWrapper","com.zoho.crm.api.custom_views.Info","com.zoho.crm.api.custom_views.CustomView","com.zoho.crm.api.custom_views.Criteria","com.zoho.crm.api.custom_views.Range","com.zoho.crm.api.custom_views.APIException","com.zoho.crm.api.notification.SuccessResponse","com.zoho.crm.api.notification.Info","com.zoho.crm.api.notification.BodyWrapper","com.zoho.crm.api.notification.APIException","com.zoho.crm.api.notification.ActionWrapper","com.zoho.crm.api.notification.ResponseWrapper","com.zoho.crm.api.notification.Notification","com.zoho.crm.api.blue_print.Transition","com.zoho.crm.api.blue_print.BluePrint","com.zoho.crm.api.blue_print.Escalation","com.zoho.crm.api.blue_print.SuccessResponse","com.zoho.crm.api.blue_print.BodyWrapper","com.zoho.crm.api.blue_print.NextTransition","com.zoho.crm.api.blue_print.ProcessInfo","com.zoho.crm.api.blue_print.ResponseWrapper","com.zoho.crm.api.blue_print.APIException","com.zoho.crm.api.blue_print.ValidationError","com.zoho.crm.api.blue_print.Field","com.zoho.crm.api.files.BodyWrapper","com.zoho.crm.api.files.SuccessResponse","com.zoho.crm.api.files.ActionWrapper","com.zoho.crm.api.files.APIException","com.zoho.crm.api.files.FileBodyWrapper","com.zoho.crm.api.record.Widget","com.zoho.crm.api.record.ResponseWrapper","com.zoho.crm.api.record.Consent","com.zoho.crm.api.record.SuccessResponse","com.zoho.crm.api.record.ConvertActionWrapper","com.zoho.crm.api.record.MassUpdateBodyWrapper","com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.Wizard","com.zoho.crm.api.record.MassUpdateTerritory","com.zoho.crm.api.record.Territory","com.zoho.crm.api.record.SuccessfulConvert","com.zoho.crm.api.record.LeadConverter","com.zoho.crm.api.record.BodyWrapper","com.zoho.crm.api.record.Criteria","com.zoho.crm.api.record.MassUpdateActionWrapper","com.zoho.crm.api.record.Info","com.zoho.crm.api.record.FileBodyWrapper","com.zoho.crm.api.record.MassUpdate","com.zoho.crm.api.record.ActionWrapper","com.zoho.crm.api.record.Record","com.zoho.crm.api.record.RemindAt","com.zoho.crm.api.record.Participants","com.zoho.crm.api.record.ConvertBodyWrapper","com.zoho.crm.api.record.MassUpdateResponseWrapper","com.zoho.crm.api.record.PriceBook","com.zoho.crm.api.record.Tax","com.zoho.crm.api.record.FileDetails","com.zoho.crm.api.record.MultiSelectPicklist","com.zoho.crm.api.record.DeletedRecordsWrapper","com.zoho.crm.api.record.Reminder","com.zoho.crm.api.record.DeletedRecord","com.zoho.crm.api.record.LineTax","com.zoho.crm.api.record.RecurringActivity","com.zoho.crm.api.record.LineItemProduct","com.zoho.crm.api.record.Comment","com.zoho.crm.api.record.MultiSelectLookup","com.zoho.crm.api.record.CarryOverTags","com.zoho.crm.api.record.MassUpdateSuccessResponse","com.zoho.crm.api.record.PricingDetails","com.zoho.crm.api.record.CountWrapper","com.zoho.crm.api.record.ImageUpload","com.zoho.crm.api.related_records.APIException","com.zoho.crm.api.related_records.SuccessResponse","com.zoho.crm.api.related_records.ActionWrapper","com.zoho.crm.api.related_records.ResponseWrapper","com.zoho.crm.api.related_records.FileBodyWrapper","com.zoho.crm.api.related_records.BodyWrapper","com.zoho.crm.api.field_attachments.FileBodyWrapper","com.zoho.crm.api.field_attachments.APIException","com.zoho.crm.api.field_attachments.BodyWrapper","com.zoho.crm.api.send_mail.APIException","com.zoho.crm.api.send_mail.ResponseWrapper","com.zoho.crm.api.send_mail.Mail","com.zoho.crm.api.send_mail.UserAddress","com.zoho.crm.api.send_mail.SuccessResponse","com.zoho.crm.api.send_mail.BodyWrapper","com.zoho.crm.api.send_mail.InventoryDetails","com.zoho.crm.api.send_mail.ActionWrapper","com.zoho.crm.api.send_mail.DataSubjectRequest","com.zoho.crm.api.share_records.SuccessResponse","com.zoho.crm.api.share_records.SharedThrough","com.zoho.crm.api.share_records.APIException","com.zoho.crm.api.share_records.ResponseWrapper","com.zoho.crm.api.share_records.ShareRecord","com.zoho.crm.api.share_records.DeleteActionWrapper","com.zoho.crm.api.share_records.BodyWrapper","com.zoho.crm.api.share_records.ActionWrapper","com.zoho.crm.api.bulk_read.Criteria","com.zoho.crm.api.bulk_read.Query","com.zoho.crm.api.bulk_read.RequestWrapper","com.zoho.crm.api.bulk_read.SuccessResponse","com.zoho.crm.api.bulk_read.JobDetail","com.zoho.crm.api.bulk_read.Result","com.zoho.crm.api.bulk_read.CallBack","com.zoho.crm.api.bulk_read.ResponseWrapper","com.zoho.crm.api.bulk_read.APIException","com.zoho.crm.api.bulk_read.ActionWrapper","com.zoho.crm.api.bulk_read.FileBodyWrapper","com.zoho.crm.api.variables.ResponseWrapper","com.zoho.crm.api.variables.BodyWrapper","com.zoho.crm.api.variables.APIException","com.zoho.crm.api.variables.Variable","com.zoho.crm.api.variables.SuccessResponse","com.zoho.crm.api.variables.ActionWrapper","com.zoho.crm.api.assignment_rules.ResponseWrapper","com.zoho.crm.api.assignment_rules.APIException","com.zoho.crm.api.assignment_rules.DefaultUser","com.zoho.crm.api.assignment_rules.AssignmentRule","com.zoho.crm.api.org.SuccessResponse","com.zoho.crm.api.org.ResponseWrapper","com.zoho.crm.api.org.Org","com.zoho.crm.api.org.HierarchyPreference","com.zoho.crm.api.org.LicenseDetails","com.zoho.crm.api.org.APIException","com.zoho.crm.api.org.FileBodyWrapper","com.zoho.crm.api.query.ResponseWrapper","com.zoho.crm.api.query.BodyWrapper","com.zoho.crm.api.query.APIException","com.zoho.crm.api.profiles.APIException","com.zoho.crm.api.profiles.Category","com.zoho.crm.api.profiles.DefaultView","com.zoho.crm.api.profiles.Profile","com.zoho.crm.api.profiles.PermissionDetail","com.zoho.crm.api.profiles.Section","com.zoho.crm.api.profiles.ResponseWrapper","com.zoho.crm.api.users.ActionWrapper","com.zoho.crm.api.users.SuccessResponse","com.zoho.crm.api.users.ResponseWrapper","com.zoho.crm.api.users.Territory","com.zoho.crm.api.users.CustomizeInfo","com.zoho.crm.api.users.Theme","com.zoho.crm.api.users.BodyWrapper","com.zoho.crm.api.users.Info","com.zoho.crm.api.users.Shift","com.zoho.crm.api.users.RequestWrapper","com.zoho.crm.api.users.User","com.zoho.crm.api.users.APIException","com.zoho.crm.api.users.TabTheme","com.zoho.crm.api.modules.Module","com.zoho.crm.api.modules.Territory","com.zoho.crm.api.modules.APIException","com.zoho.crm.api.modules.SuccessResponse","com.zoho.crm.api.modules.ActionWrapper","com.zoho.crm.api.modules.ResponseWrapper","com.zoho.crm.api.modules.Argument","com.zoho.crm.api.modules.RelatedListProperties","com.zoho.crm.api.modules.BodyWrapper","com.zoho.crm.api.tags.MergeWrapper","com.zoho.crm.api.tags.ActionWrapper","com.zoho.crm.api.tags.BodyWrapper","com.zoho.crm.api.tags.ResponseWrapper","com.zoho.crm.api.tags.Tag","com.zoho.crm.api.tags.Info","com.zoho.crm.api.tags.SuccessResponse","com.zoho.crm.api.tags.APIException","com.zoho.crm.api.tags.RecordActionWrapper","com.zoho.crm.api.tags.CountWrapper","com.zoho.crm.api.tags.ConflictWrapper","com.zoho.crm.api.pipeline.PickListValue","com.zoho.crm.api.pipeline.Pipeline","com.zoho.crm.api.pipeline.BodyWrapper","com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.TransferAndDeleteWrapper","com.zoho.crm.api.pipeline.ActionWrapper","com.zoho.crm.api.pipeline.TransferActionWrapper","com.zoho.crm.api.pipeline.TransferPipeLine","com.zoho.crm.api.pipeline.ForecastCategory","com.zoho.crm.api.pipeline.ResponseWrapper","com.zoho.crm.api.pipeline.Stage","com.zoho.crm.api.pipeline.SuccessResponse","com.zoho.crm.api.territories.Territory","com.zoho.crm.api.territories.APIException","com.zoho.crm.api.territories.ResponseWrapper","com.zoho.crm.api.contact_roles.ResponseWrapper","com.zoho.crm.api.contact_roles.SuccessResponse","com.zoho.crm.api.contact_roles.BodyWrapper","com.zoho.crm.api.contact_roles.APIException","com.zoho.crm.api.contact_roles.ActionWrapper","com.zoho.crm.api.contact_roles.ContactRole","com.zoho.crm.api.fields.RelatedDetails","com.zoho.crm.api.fields.MultiModuleLookup","com.zoho.crm.api.fields.Field","com.zoho.crm.api.fields.Unique","com.zoho.crm.api.fields.ViewType","com.zoho.crm.api.fields.AutoNumber","com.zoho.crm.api.fields.Maps","com.zoho.crm.api.fields.MultiSelectLookup","com.zoho.crm.api.fields.PickListValue","com.zoho.crm.api.fields.ToolTip","com.zoho.crm.api.fields.Currency","com.zoho.crm.api.fields.MultiUserLookup","com.zoho.crm.api.fields.External","com.zoho.crm.api.fields.HistoryTracking","com.zoho.crm.api.fields.LookupField","com.zoho.crm.api.fields.APIException","com.zoho.crm.api.fields.AssociationDetails","com.zoho.crm.api.fields.Crypt","com.zoho.crm.api.fields.ResponseWrapper","com.zoho.crm.api.fields.Formula","com.zoho.crm.api.fields.Private","com.zoho.crm.api.fields.Module","com.zoho.crm.api.variable_groups.ResponseWrapper","com.zoho.crm.api.variable_groups.VariableGroup","com.zoho.crm.api.variable_groups.APIException","com.zoho.crm.api.currencies.Currency","com.zoho.crm.api.currencies.ResponseWrapper","com.zoho.crm.api.currencies.SuccessResponse","com.zoho.crm.api.currencies.BaseCurrencyWrapper","com.zoho.crm.api.currencies.ActionWrapper","com.zoho.crm.api.currencies.APIException","com.zoho.crm.api.currencies.BodyWrapper","com.zoho.crm.api.currencies.Format","com.zoho.crm.api.currencies.BaseCurrencyActionWrapper","com.zoho.crm.api.wizards.Button","com.zoho.crm.api.wizards.ChartData","com.zoho.crm.api.wizards.Wizard","com.zoho.crm.api.wizards.Connection","com.zoho.crm.api.wizards.Screen","com.zoho.crm.api.wizards.Node","com.zoho.crm.api.wizards.Segment","com.zoho.crm.api.wizards.Transition","com.zoho.crm.api.wizards.ResponseWrapper","com.zoho.crm.api.wizards.Container","com.zoho.crm.api.wizards.APIException"],"interface":true},"com.zoho.crm.api.assignment_rules.AssignmentRule":{"created_time":{"name":"created_time","type":"DateTime"},"modified_time":{"name":"modified_time","type":"DateTime"},"module_1":{"structure_name":"com.zoho.crm.api.modules.Module","name":"module","type":"com.zoho.crm.api.modules.Module"},"default_assignee":{"structure_name":"com.zoho.crm.api.assignment_rules.DefaultUser","name":"default_assignee","type":"com.zoho.crm.api.assignment_rules.DefaultUser"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"}},"com.zoho.crm.api.record.GetRecordHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.attachments.APIException":{"code":{"values":["NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"id","type":"Long"},{"name":"resource_path_index","type":"Integer"},{"name":"related_status","type":"String"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["As it is a linked attachment"," you can not download it","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Attachment link already exists","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notes.Note":{"owner":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Owner","type":"com.zoho.crm.api.users.User"},"note_content":{"name":"Note_Content","type":"String","required":true},"created_time":{"name":"Created_Time","type":"DateTime"},"attachments":{"lookup":true,"structure_name":"com.zoho.crm.api.attachments.Attachment","name":"$attachments","type":"List"},"note_title":{"name":"Note_Title","type":"String"},"editable":{"name":"$editable","type":"Boolean"},"se_module":{"name":"$se_module","type":"String","required":true},"voice_note":{"name":"$voice_note","type":"Boolean"},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"size":{"name":"$size","type":"String"},"sharing_permission":{"name":"$sharing_permission","type":"String"},"parent_id":{"lookup":true,"structure_name":"com.zoho.crm.api.record.Record","name":"Parent_Id","type":"com.zoho.crm.api.record.Record","required":true},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},"state":{"name":"$state","type":"String"},"id":{"name":"id","type":"Long","primary":true},"is_shared_to_client":{"name":"$is_shared_to_client","type":"Boolean"}},"com.zoho.crm.api.related_lists.APIException":{"code":{"values":["INVALID_MODULE","REQUIRED_PARAM_MISSING","INTERNAL_ERROR","INVALID_URL_PATTERN","OAUTH_SCOPE_MISMATCH","NO_PERMISSION","INVALID_REQUEST_METHOD","AUTHORIZATION_FAILED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Please check if the URL trying to access is a correct one","the module name given seems to be invalid","the given module is not supported in api","One of the expected parameter is missing","Internal server error","Unauthorized","Permission denied to read","Bad Request","The http request method type is not a valid one","User does not have sufficient privilege to read related lists data"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.SuccessfulConvert":{"deals":{"name":"Deals","type":"String"},"accounts":{"name":"Accounts","type":"String"},"contacts":{"name":"Contacts","type":"String"}},"com.zoho.crm.api.modules.ActionHandler":{"classes":["com.zoho.crm.api.modules.APIException","com.zoho.crm.api.modules.ActionWrapper"],"interface":true},"com.zoho.crm.api.fields.AssociationDetails":{"related_field":{"structure_name":"com.zoho.crm.api.fields.LookupField","name":"related_field","type":"com.zoho.crm.api.fields.LookupField"},"lookup_field":{"structure_name":"com.zoho.crm.api.fields.LookupField","name":"lookup_field","type":"com.zoho.crm.api.fields.LookupField"}},"com.zoho.crm.api.email_templates.GetEmailTemplatesParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.field_attachments.GetFieldAttachmentsParam":{"fields_attachment_id":{"name":"fields_attachment_id","type":"Long"}},"com.zoho.crm.api.users.RequestWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.User","name":"users","max-length":1,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.wizards.Transition":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.fields.Maps":{"api_name":{"name":"api_name","type":"String"},"pick_list_values":{"structure_name":"com.zoho.crm.api.fields.PickListValue","name":"pick_list_values","type":"List"}},"com.zoho.crm.api.record.LineTax":{"percentage":{"name":"percentage","type":"Double"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"display_name":{"name":"display_name","type":"String"},"value":{"name":"value","type":"Double"}},"com.zoho.crm.api.variables.ActionResponse":{"classes":["com.zoho.crm.api.variables.APIException","com.zoho.crm.api.variables.SuccessResponse"],"interface":true},"com.zoho.crm.api.record.DeleteRecordParam":{"wf_trigger":{"name":"wf_trigger","type":"String"}},"com.zoho.crm.api.territories.ResponseWrapper":{"territories":{"structure_name":"com.zoho.crm.api.territories.Territory","name":"territories","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.modules.RelatedListProperties":{"sort_by":{"name":"sort_by","type":"String"},"fields":{"name":"fields","type":"List"},"sort_order":{"name":"sort_order","type":"String"}},"com.zoho.crm.api.fields.ResponseWrapper":{"fields":{"structure_name":"com.zoho.crm.api.fields.Field","name":"fields","type":"List"}},"com.zoho.crm.api.currencies.BaseCurrencyActionWrapper":{"base_currency":{"structure_name":"com.zoho.crm.api.currencies.ActionResponse","name":"base_currency","interface":true,"type":"com.zoho.crm.api.currencies.ActionResponse"}},"com.zoho.crm.api.files.ActionHandler":{"classes":["com.zoho.crm.api.files.ActionWrapper","com.zoho.crm.api.files.APIException"],"interface":true},"com.zoho.crm.api.related_records.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.bulk_read.SuccessResponse":{"code":{"values":["ADDED_SUCCESSFULLY"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"operation","type":"String"},{"values":["COMPLETED","IN PROGRESS","ADDED","FAILURE"],"name":"state","type":"com.zoho.crm.api.util.Choice"},{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},{"name":"created_time","type":"DateTime"}],"name":"details","type":"Map"},"message":{"values":["Added successfully."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.pipeline.ActionHandler":{"classes":["com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.ActionWrapper"],"interface":true},"com.zoho.crm.api.query.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.record.MassUpdateResponseHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.MassUpdateResponseWrapper"],"interface":true},"com.zoho.crm.api.variables.ActionWrapper":{"variables":{"structure_name":"com.zoho.crm.api.variables.ActionResponse","name":"variables","type":"List","required":true}},"com.zoho.crm.api.record.ConvertActionHandler":{"classes":["com.zoho.crm.api.record.ConvertActionWrapper","com.zoho.crm.api.record.APIException"],"interface":true},"com.zoho.crm.api.record.ConvertBodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.LeadConverter","name":"data","max-length":1,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.tags.CreateTagsParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.tags.RemoveTagsFromRecordParam":{"tag_names":{"name":"tag_names","type":"String","required":true}},"com.zoho.crm.api.tags.UpdateTagsParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.send_mail.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","NOT_ALLOWED","FILE_SIZE_EXCEEDS","CUSTOM_ERROR","FEATURE_NOT_SUPPORTED","INVALID_DATA","INTERNAL_ERROR","NO_PERMISSION","CUSTOM_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"api_name","type":"String"},{"name":"index","type":"Integer"},{"name":"parent_api_name","type":"String"},{"name":"period","type":"String"},{"name":"reason","type":"String"},{"name":"allowed_limit","type":"Integer"},{"name":"size","type":"Integer"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Daily limit exceeded for send mail","required field not found","permission denied","Account confirmation required.Please confirm your account registration so that you can send emails","Email Confirmation Required.Please confirm your email associated to your account so that you can send emails","required field not found","invalid data","permission denied to access the api","You have reached the daily mail usage limit for your organization.","Sorry"," your organization has been blocked from sending email. Please contact support@zohocrm.com for additional information.","Internal server error occurred.","You cannot send an email to this customer because this person has opted to stop the email communication","You cannot send email to this record as it doesn't have either primary or secondary email address","You cannot send email to this record as associated contact doesn't have either primary or secondary email address","Email cannot be sent as record's email field contain one or more blocked emaill","Email cannot be sent as recipient email's contain one or more blocked email","Email can't be sent using this from address.Kindly check the allowed from address list","the related id given seems to be invalid","You cannot send email to get consent from customer as Compliance settings is not enabled","There is no file exists with the given id","Have not consented to receive email from you","Total file(s) size should not exceed 10MB","Connectivity issue occured when sending mail via your SMTP server","You cannot schedule email as your license type does not support email scheduling"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.DeletedRecordsHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.DeletedRecordsWrapper"],"interface":true},"com.zoho.crm.api.users.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"email","type":"String"}],"name":"details","type":"Map"},"message":{"values":["User added","User updated","User deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.GetUsersHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.fields.RelatedDetails":{"display_label":{"name":"display_label","type":"String"},"module_1":{"structure_name":"com.zoho.crm.api.fields.Module","name":"module","type":"com.zoho.crm.api.fields.Module"},"api_name":{"name":"api_name","type":"String"},"field_label":{"name":"field_label","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"_type","type":"String"}},"com.zoho.crm.api.contact_roles.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"limit","type":"Integer"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the module name given seems to be invalid","duplicate data","Contact Role feature limit exceeded","required field not found","invalid data","contact role not deleted","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.fields.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","INTERNAL_ERROR","REQUIRED_PARAM_MISSING"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the given module is not supported for this api","Internal server error occurred.","the module name given seems to be invalid"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notification.GetNotificationDetailsParam":{"per_page":{"name":"per_page","type":"Integer"},"module_1":{"name":"module","type":"String"},"page":{"name":"page","type":"Integer"},"channel_id":{"name":"channel_id","type":"Long"}},"com.zoho.crm.api.bulk_read.Criteria":{"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com.zoho.crm.api.util.Choice"},"field":{"structure_name":"com.zoho.crm.api.fields.Field","name":"field","type":"com.zoho.crm.api.fields.Field"},"api_name":{"name":"api_name","type":"String"},"group_operator":{"values":["and","or"],"name":"group_operator","type":"com.zoho.crm.api.util.Choice"},"value":{"name":"value","type":"Object"},"group":{"structure_name":"com.zoho.crm.api.bulk_read.Criteria","name":"group","type":"List"}},"com.zoho.crm.api.fields.ViewType":{"view":{"name":"view","type":"Boolean"},"edit":{"name":"edit","type":"Boolean"},"quick_create":{"name":"quick_create","type":"Boolean"},"create":{"name":"create","type":"Boolean"}},"com.zoho.crm.api.notes.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.notes.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.fields.External":{"allow_multiple_config":{"name":"allow_multiple_config","type":"Boolean"},"show":{"name":"show","type":"Boolean"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.record.MultiSelectPicklist":{"fieldname":{"name":"fieldName","type":"Map"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.fields.Private":{"restricted":{"name":"restricted","type":"Boolean"},"type":{"name":"type","type":"String"},"export":{"name":"export","type":"Boolean"}},"com.zoho.crm.api.blue_print.ProcessInfo":{"field_id":{"name":"field_id","type":"String"},"escalation":{"structure_name":"com.zoho.crm.api.blue_print.Escalation","name":"escalation","type":"com.zoho.crm.api.blue_print.Escalation"},"is_continuous":{"name":"is_continuous","type":"Boolean"},"api_name":{"name":"api_name","type":"String"},"continuous":{"name":"continuous","type":"Boolean"},"field_label":{"name":"field_label","type":"String"},"name":{"name":"name","type":"String"},"column_name":{"name":"column_name","type":"String"},"field_value":{"name":"field_value","type":"String"},"id":{"name":"id","type":"Long"},"field_name":{"name":"field_name","type":"String"}},"com.zoho.crm.api.notification.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR","NOT_SUBSCRIBED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"maximum_length","type":"Integer"},{"name":"param","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the module name given seems to be invalid","duplicate data","Not subscribed for actions-watch of the given module/channel","required field not found","invalid data","Not subscribed for actions-watch of the given channel","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.Shift":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.pipeline.ResponseHandler":{"classes":["com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.ResponseWrapper"],"interface":true},"com.zoho.crm.api.contact_roles.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["contact role added","contact role updated","contact role deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.modules.ActionWrapper":{"modules":{"structure_name":"com.zoho.crm.api.modules.ActionResponse","name":"modules","type":"List"}},"com.zoho.crm.api.fields.MultiModuleLookup":{"module_1":{"structure_name":"com.zoho.crm.api.fields.Module","name":"module","type":"com.zoho.crm.api.fields.Module"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.attachments.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.record.PricingDetails":{"to_range":{"name":"to_range","type":"Double","required":true},"discount":{"name":"discount","type":"Double","required":true},"from_range":{"name":"from_range","type":"Double","required":true}},"com.zoho.crm.api.custom_views.ResponseWrapper":{"custom_views":{"structure_name":"com.zoho.crm.api.custom_views.CustomView","name":"custom_views","type":"List"},"info":{"structure_name":"com.zoho.crm.api.custom_views.Info","name":"info","type":"com.zoho.crm.api.custom_views.Info"}},"com.zoho.crm.api.send_mail.InventoryDetails":{"view_type":{"name":"view_type","type":"String"},"inventory_template":{"structure_name":"com.zoho.crm.api.inventory_templates.InventoryTemplate","name":"inventory_template","type":"com.zoho.crm.api.inventory_templates.InventoryTemplate"},"paper_type":{"name":"paper_type","type":"String"}},"com.zoho.crm.api.files.ResponseHandler":{"classes":["com.zoho.crm.api.files.APIException","com.zoho.crm.api.files.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.wizards.Segment":{"sequence_number":{"name":"sequence_number","type":"Integer"},"display_label":{"name":"display_label","type":"String"},"buttons":{"structure_name":"com.zoho.crm.api.wizards.Button","name":"buttons","type":"List"},"column_count":{"name":"column_count","type":"Integer"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"fields":{"structure_name":"com.zoho.crm.api.fields.Field","name":"fields","type":"List"}},"com.zoho.crm.api.bulk_write.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.record.CountWrapper":{"count":{"name":"count","type":"String"}},"com.zoho.crm.api.field_attachments.APIException":{"code":{"values":["INTERNAL_ERROR","INVALID_TOKEN","INVALID_DATA","NO_PERMISSION","INVALID_MODULE","NOT_SUPPORTED","OAUTH_SCOPE_MISMATCH","AUTHENTICATION_FAILURE"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"resource_path_index","type":"Integer"},{"name":"permissions","type":"List"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","invalid data","permission denied","Internal server error occurred.","Authentication failed","the id given seems to be invalid","unable to process your request. please verify whether you have entered proper method name"," parameter and parameter values."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.CountHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.CountWrapper"],"interface":true},"com.zoho.crm.api.modules.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["module updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.roles.Role":{"display_label":{"name":"display_label","type":"String"},"forecast_manager":{"structure_name":"com.zoho.crm.api.users.User","name":"forecast_manager","type":"com.zoho.crm.api.users.User"},"share_with_peers":{"name":"share_with_peers","type":"Boolean"},"name":{"name":"name","type":"String"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true},"reporting_to":{"structure_name":"com.zoho.crm.api.users.User","name":"reporting_to","type":"com.zoho.crm.api.users.User"},"admin_user":{"name":"admin_user","type":"Boolean"}},"com.zoho.crm.api.tags.RecordActionHandler":{"classes":["com.zoho.crm.api.tags.APIException","com.zoho.crm.api.tags.RecordActionWrapper"],"interface":true},"com.zoho.crm.api.bulk_write.RequestWrapper":{"resource":{"structure_name":"com.zoho.crm.api.bulk_write.Resource","name":"resource","type":"List","required":true},"character_encoding":{"name":"character_encoding","type":"String"},"callback":{"structure_name":"com.zoho.crm.api.bulk_write.CallBack","name":"callback","type":"com.zoho.crm.api.bulk_write.CallBack"},"operation":{"values":["insert","update","upsert"],"name":"operation","type":"com.zoho.crm.api.util.Choice","required":true}},"com.zoho.crm.api.contact_roles.ActionResponse":{"classes":["com.zoho.crm.api.contact_roles.SuccessResponse","com.zoho.crm.api.contact_roles.APIException"],"interface":true},"com.zoho.crm.api.record.Wizard":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.MassUpdateBodyWrapper":{"cvid":{"name":"cvid","type":"String"},"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List","skip_mandatory":true,"required":true},"criteria":{"structure_name":"com.zoho.crm.api.record.Criteria","name":"criteria","type":"List"},"ids":{"name":"ids","type":"List"},"over_write":{"name":"over_write","type":"Boolean"},"territory":{"structure_name":"com.zoho.crm.api.record.MassUpdateTerritory","name":"territory","type":"com.zoho.crm.api.record.MassUpdateTerritory"}},"com.zoho.crm.api.variable_groups.VariableGroup":{"display_label":{"name":"display_label","type":"String"},"api_name":{"name":"api_name","type":"String"},"name":{"name":"name","type":"String"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true}},"com.zoho.crm.api.related_lists.GetRelatedListsParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.bulk_read.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.tags.BodyWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"tags","type":"List","required":true}},"com.zoho.crm.api.email_templates.ResponseHandler":{"classes":["com.zoho.crm.api.email_templates.APIException","com.zoho.crm.api.email_templates.ResponseWrapper"],"interface":true},"com.zoho.crm.api.record.PriceBook":{"name":{"name":"name","type":"String"}},"com.zoho.crm.api.notes.GetNoteHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime","required":true}},"com.zoho.crm.api.record.APIException":{"code":{"values":["NOT_ALLOWED","ALREADY_USED","TERRITORY_NOT_ENABLED","DEPENDENT_FIELD_MISSING","EXPECTED_FIELD_MISSING","FEATURE_NOT_SUPPORTED","CONVERTED_RECORD","NOT_FOUND","NO_RECORDS_FOUND","NOT_APPROVED","LIMIT_EXCEEDED","ALREADY_SCHEDULED","CANNOT_PERFORM_ACTION","CANNOT_PROCESS","INTERNAL_ERROR","INVALID_TOKEN","INVALID_DATA","STORAGE_SPACE_EXCEEDED","MANDATORY_NOT_FOUND","NO_PERMISSION","INVALID_MODULE","NOT_SUPPORTED","PATTERN_NOT_MATCHED","OAUTH_SCOPE_MISMATCH","DUPLICATE_DATA","INVALID_QUERY","MAPPING_MISMATCH","ID_ALREADY_CONVERTED","FILE_SIZE_MORE_THAN_ALLOWED_SIZE","RECORD_IN_BLUEPRINT","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","CANNOT_DELETE","REQUIRED_PARAM_MISSING","DATA_MISMATCH","RECORD_LOCKED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"param_name","type":"String"},{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"module","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"index","type":"Integer"},{"name":"maximum_length","type":"String"},{"name":"mapped_field","type":"String"},{"name":"reason","type":"String"},{"name":"operator","type":"String"},{"name":"allowed_count","type":"Integer"},{"name":"limit","type":"Integer"},{"name":"json_path","type":"String"},{"name":"parent_api_name","type":"String"},{"name":"param","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["the territory feature is not enabled","Given Probability is not valid","duplicate territory id found","Given Territory id already exists for that record","User has no permission to assign this territory","Maximum limit of territories for that record exceeds","Invalid Sequence Number","Record insertion limit for Image upload field has been exceeded.","Record insertion limit has been exceeded.","The image format is invalid.","Dependent Fields missing","Specify Atleast one field","the id given seems to be invalid.","Already an Mass Action scheduler is runing for the given cvid","Scheduled Mass Operation feature is not available in your edition","can't update the converted record","Field cannot be updated in Scheduled Mass Update","Field is not visible","Field cannot be updated as it is associated with a validation rule.","Field cannot be updated as it is associated with a layout rule.This field cannot be updated in the Mass Update","Max field limit exceeded","Maximum lookup field limit in criteria exceeded","No field found","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","Territory is not supported for the given module","Please check whether the input values are correct","invalid data","permission denied","Internal server error occurred.","duplicate data","required field not found","Layout doesn't contain the Pipeline","Pipeline doesn't contain the Stage","the id given seems to be invalid","record not deleted","record not deletable","Authentication failed","One of the expected parameter is missing","mandatory param missing","invalid query formed","id already converted","body","given id is invalid","Already a Mass Action scheduler is running for the given cvid","The record is in stop processing","The record is in blue print","no permission to perform an action on this record","Record count exceeded","record not approved","no record found to update","Field Edit Permission not given","Customview not accessible","Empty response","give contact id is mismatched with the data","give account id is mismatched with the data","Territory id which you are trying to remove was system assigned"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.share_records.SharedThrough":{"module_1":{"lookup":true,"structure_name":"com.zoho.crm.api.modules.Module","name":"module","type":"com.zoho.crm.api.modules.Module"},"entity_name":{"name":"entity_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.assignment_rules.GetAssignmentRuleParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.related_records.DelinkRecordsParam":{"ids":{"name":"ids","type":"Long","required":true}},"com.zoho.crm.api.record.MassUpdateSuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"job_id","type":"String"},{"name":"id","type":"Long"},{"name":"Modified_Time","type":"DateTime"},{"name":"Created_Time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},{"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"}],"name":"details","type":"Map"},"message":{"values":["record updated","mass update scheduled successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.email_templates.GetEmailTemplatebyIDParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.fields.Unique":{"casesensitive":{"name":"casesensitive","type":"String"}},"com.zoho.crm.api.fields.Currency":{"rounding_option":{"name":"rounding_option","type":"String"},"precision":{"name":"precision","type":"Integer"}},"com.zoho.crm.api.record.BodyWrapper":{"wf_trigger":{"name":"wf_trigger","type":"String"},"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","max-length":100,"type":"List","required":true,"min-length":1},"lar_id":{"name":"lar_id","type":"String"},"trigger":{"name":"trigger","type":"List"},"duplicate_check_fields":{"name":"duplicate_check_fields","type":"List"}},"com.zoho.crm.api.files.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.record.GetRecordsParam":{"cvid":{"name":"cvid","type":"String"},"per_page":{"name":"per_page","type":"Integer"},"sort_by":{"name":"sort_by","type":"String"},"endDateTime":{"name":"endDateTime","type":"DateTime"},"uid":{"name":"uid","type":"String"},"approved":{"name":"approved","type":"String"},"startDateTime":{"name":"startDateTime","type":"DateTime"},"include_child":{"name":"include_child","type":"String"},"converted":{"name":"converted","type":"String"},"ids":{"name":"ids","type":"Long","required":true},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"},"sort_order":{"name":"sort_order","type":"String"},"territory_id":{"name":"territory_id","type":"String"}},"com.zoho.crm.api.attachments.GetAttachmentsParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.record.MassUpdateActionHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.MassUpdateActionWrapper"],"interface":true},"com.zoho.crm.api.record.RecordCountParam":{"phone":{"name":"phone","type":"String"},"criteria":{"name":"criteria","type":"String"},"word":{"name":"word","type":"String"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.variable_groups.ResponseWrapper":{"variable_groups":{"structure_name":"com.zoho.crm.api.variable_groups.VariableGroup","name":"variable_groups","type":"List"}},"com.zoho.crm.api.wizards.APIException":{"code":{"values":["INVALID_DATA","INTERNAL_ERROR","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"param_name","type":"String"},{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Invalid Wizard ID","the module name given seems to be invalid","feature not available in this edition","permission denied","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.layouts.Layout":{"created_time":{"name":"created_time","type":"DateTime"},"convert_mapping":{"name":"convert_mapping","type":"Map"},"visible":{"name":"visible","type":"Boolean"},"created_for":{"structure_name":"com.zoho.crm.api.users.User","name":"created_for","type":"com.zoho.crm.api.users.User"},"profiles":{"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"},"created_by":{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"},"sections":{"structure_name":"com.zoho.crm.api.layouts.Section","name":"sections","type":"List"},"display_type":{"name":"display_type","type":"Integer"},"show_business_card":{"name":"show_business_card","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.User","name":"modified_by","type":"com.zoho.crm.api.users.User"},"id":{"name":"id","type":"Long","primary":true},"status":{"name":"status","type":"Integer"}},"com.zoho.crm.api.blue_print.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["transition updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notes.ResponseHandler":{"classes":["com.zoho.crm.api.notes.APIException","com.zoho.crm.api.notes.ResponseWrapper"],"interface":true},"com.zoho.crm.api.custom_views.ResponseHandler":{"classes":["com.zoho.crm.api.custom_views.ResponseWrapper","com.zoho.crm.api.custom_views.APIException"],"interface":true},"com.zoho.crm.api.pipeline.CreatePipelinesParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.blue_print.Transition":{"next_transitions":{"lookup":true,"structure_name":"com.zoho.crm.api.blue_print.NextTransition","name":"next_transitions","type":"List"},"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"com.zoho.crm.api.record.Record","skip_mandatory":true},"next_field_value":{"name":"next_field_value","type":"String"},"name":{"name":"name","type":"String"},"criteria_matched":{"name":"criteria_matched","type":"Boolean"},"parent_transition":{"lookup":true,"structure_name":"com.zoho.crm.api.blue_print.Transition","name":"parent_transition","type":"com.zoho.crm.api.blue_print.Transition"},"id":{"name":"id","type":"Long"},"fields":{"lookup":true,"structure_name":"com.zoho.crm.api.blue_print.Field","name":"fields","type":"List"},"type":{"name":"type","type":"String"},"criteria_message":{"name":"criteria_message","type":"String"},"percent_partial_save":{"name":"percent_partial_save","type":"Double"},"execution_time":{"name":"execution_time","type":"DateTime"}},"com.zoho.crm.api.assignment_rules.ResponseHandler":{"classes":["com.zoho.crm.api.assignment_rules.ResponseWrapper","com.zoho.crm.api.assignment_rules.APIException"],"interface":true},"com.zoho.crm.api.tags.Info":{"count":{"name":"count","type":"Integer"},"allowed_count":{"name":"allowed_count","type":"Integer"}},"com.zoho.crm.api.org.ResponseWrapper":{"org":{"structure_name":"com.zoho.crm.api.org.Org","name":"org","type":"List"}},"com.zoho.crm.api.tags.ActionHandler":{"classes":["com.zoho.crm.api.tags.ActionWrapper","com.zoho.crm.api.tags.APIException"],"interface":true},"com.zoho.crm.api.currencies.ActionHandler":{"classes":["com.zoho.crm.api.currencies.ActionWrapper","com.zoho.crm.api.currencies.APIException"],"interface":true},"com.zoho.crm.api.users.ActionWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.ActionResponse","name":"users","type":"List"}},"com.zoho.crm.api.query.BodyWrapper":{"select_query":{"name":"select_query","type":"String","required":true}},"com.zoho.crm.api.share_records.ShareRecord":{"share_related_records":{"name":"share_related_records","type":"Boolean"},"shared_through":{"lookup":true,"structure_name":"com.zoho.crm.api.share_records.SharedThrough","name":"shared_through","type":"com.zoho.crm.api.share_records.SharedThrough"},"shared_time":{"name":"shared_time","type":"DateTime"},"permission":{"required_in_update":true,"name":"permission","type":"String","required":true},"shared_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"shared_by","type":"com.zoho.crm.api.users.User"},"user":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","required_in_update":true,"name":"user","type":"com.zoho.crm.api.users.User","required":true}},"com.zoho.crm.api.share_records.APIException":{"code":{"values":["PATTERN_NOT_MATCHED","NO_PERMISSION","BAD_REQUEST","INVALID_MODULE","SHARE_LIMIT_EXCEEDED","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","ENTITY_ID_INVALID"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["permission denied - access the api","Scheduler is running","cannot share to the user","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid.","invalid oauth scope to access this URL","Please check if the URL trying to access is a correct one.","Permission is invalid","record is already visible to the user.","Cannot share a record to more than 10 users.","No sharing through this record is available to revoke.","ENTITY_ID_INVALID"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.MassUpdateActionResponse":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.MassUpdateSuccessResponse"],"interface":true},"com.zoho.crm.api.notification.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"structure_name":"com.zoho.crm.api.notification.Notification","name":"events","type":"List"},{"name":"resource_uri","type":"String"},{"name":"resource_id","type":"String"},{"name":"channel_id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["Successfully subscribed for actions-watch of the given module","Successfully un-subscribed from actions-watch","Successfully updated the subscribe details","Successfully removed the subscribe details"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.org.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","INVALID_DATA"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the request does not contain any file","invalid file type","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.pipeline.ResponseWrapper":{"pipeline":{"structure_name":"com.zoho.crm.api.pipeline.Pipeline","name":"pipeline","type":"List"}},"com.zoho.crm.api.pipeline.ActionWrapper":{"pipeline":{"structure_name":"com.zoho.crm.api.pipeline.ActionResponse","name":"pipeline","type":"List"}},"com.zoho.crm.api.bulk_read.Result":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"download_url":{"name":"download_url","type":"String"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.field_attachments.ResponseHandler":{"classes":["com.zoho.crm.api.field_attachments.FileBodyWrapper","com.zoho.crm.api.field_attachments.APIException"],"interface":true},"com.zoho.crm.api.tags.ActionResponse":{"classes":["com.zoho.crm.api.tags.SuccessResponse","com.zoho.crm.api.tags.APIException"],"interface":true},"com.zoho.crm.api.fields.AutoNumber":{"prefix":{"name":"prefix","type":"String"},"start_number":{"name":"start_number","type":"Integer"},"suffix":{"name":"suffix","type":"String"}},"com.zoho.crm.api.record.GetDeletedRecordsHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.profiles.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.Consent":{"owner":{"lookup":true,"structure_name":"com.zoho.crm.api.users.User","name":"Owner","type":"com.zoho.crm.api.users.User"},"contact_through_email":{"name":"Contact_Through_Email","type":"Boolean"},"data_processing_basis":{"name":"Data_Processing_Basis","type":"String"},"contact_through_social":{"name":"Contact_Through_Social","type":"Boolean"},"contact_through_survey":{"name":"Contact_Through_Survey","type":"Boolean"},"contact_through_phone":{"name":"Contact_Through_Phone","type":"Boolean"},"consent_remarks":{"name":"Consent_Remarks","type":"String"},"consent_date":{"name":"Consent_Date","type":"Date"},"mail_sent_time":{"name":"Mail_Sent_Time","type":"DateTime"},"consent_through":{"name":"Consent_Through","type":"String"}},"com.zoho.crm.api.modules.Territory":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"subordinates":{"name":"subordinates","type":"Boolean"}},"com.zoho.crm.api.bulk_write.Resource":{"field_mappings":{"structure_name":"com.zoho.crm.api.bulk_write.FieldMapping","name":"field_mappings","type":"List"},"code":{"name":"code","type":"String"},"file":{"structure_name":"com.zoho.crm.api.bulk_write.File","name":"file","type":"com.zoho.crm.api.bulk_write.File"},"module_1":{"structure_name":"com.zoho.crm.api.modules.Module","name":"module","type":"com.zoho.crm.api.modules.Module","required":true},"ignore_empty":{"name":"ignore_empty","type":"Boolean"},"file_id":{"name":"file_id","type":"String","required":true},"find_by":{"name":"find_by","type":"String"},"type":{"values":["data"],"name":"type","type":"com.zoho.crm.api.util.Choice","required":true},"status":{"values":["ADDED","IN PROGRESS","COMPLETED","SKIPPED","FAILED"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"duplicate_field":{"name":"duplicate_field","type":"String"},"action":{"values":["insert","update"],"name":"action","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"Modified_Time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.User","name":"Modified_By","type":"com.zoho.crm.api.users.User"},{"name":"Created_Time","type":"DateTime"},{"name":"id","type":"Long"},{"structure_name":"com.zoho.crm.api.users.User","name":"Created_By","type":"com.zoho.crm.api.users.User"}],"name":"details","type":"Map"},"message":{"values":["record updated","record deleted","record added","photo uploaded successfully","Photo deleted","the territories data updated successfully","the territories are removed successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notes.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.share_records.BodyWrapper":{"share":{"structure_name":"com.zoho.crm.api.share_records.ShareRecord","name":"share","max-length":10,"type":"List","required":true,"min-length":1}},"com.zoho.crm.api.blue_print.BluePrint":{"data":{"structure_name":"com.zoho.crm.api.record.Record","required_in_update":true,"name":"data","type":"com.zoho.crm.api.record.Record","skip_mandatory":true},"process_info":{"lookup":true,"structure_name":"com.zoho.crm.api.blue_print.ProcessInfo","name":"process_info","type":"com.zoho.crm.api.blue_print.ProcessInfo"},"transition_id":{"required_in_update":true,"name":"transition_id","type":"Long"},"transitions":{"lookup":true,"structure_name":"com.zoho.crm.api.blue_print.Transition","name":"transitions","type":"List"}},"com.zoho.crm.api.field_attachments.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper","required":true}},"com.zoho.crm.api.layouts.GetLayoutParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.variables.ActionHandler":{"classes":["com.zoho.crm.api.variables.APIException","com.zoho.crm.api.variables.ActionWrapper"],"interface":true},"com.zoho.crm.api.custom_views.GetCustomViewsParam":{"per_page":{"name":"per_page","type":"Integer"},"module_1":{"name":"module","type":"String"},"page":{"name":"page","type":"Integer"}},"com.zoho.crm.api.taxes.APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"name","type":"String"},{"name":"value","type":"String"},{"name":"maximum_length","type":"Integer"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","required field not found","Sequence number out of range","Sequence number cannot be repeated in same request","Given ID does not exist","tax not deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.LeadConverter":{"notify_lead_owner":{"name":"notify_lead_owner","type":"Boolean"},"assign_to":{"name":"assign_to","type":"String"},"deals":{"structure_name":"com.zoho.crm.api.record.Record","module":"Deals","name":"Deals","type":"com.zoho.crm.api.record.Record"},"carry_over_tags":{"structure_name":"com.zoho.crm.api.record.CarryOverTags","name":"carry_over_tags","type":"com.zoho.crm.api.record.CarryOverTags"},"accounts":{"name":"Accounts","type":"String"},"overwrite":{"name":"overwrite","type":"Boolean"},"notify_new_entity_owner":{"name":"notify_new_entity_owner","type":"Boolean"},"contacts":{"name":"Contacts","type":"String"}},"com.zoho.crm.api.files.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.files.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.pipeline.ActionResponse":{"classes":["com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.SuccessResponse"],"interface":true},"com.zoho.crm.api.bulk_write.SuccessResponse":{"code":{"values":["FILE_UPLOAD_SUCCESS","SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"file_id","type":"Long"},{"name":"created_time","type":"DateTime"},{"name":"id","type":"Long"},{"structure_name":"com.zoho.crm.api.users.User","name":"created_by","type":"com.zoho.crm.api.users.User"}],"name":"details","type":"Map"},"message":{"values":["file uploaded.","success"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}}}
|
data/src/version.rb
ADDED
metadata
CHANGED
@@ -1,45 +1,45 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ZCRMSDK
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ZOHO CRM API TEAM
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-06-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: cgi
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
20
|
-
type: :
|
19
|
+
version: '0.1'
|
20
|
+
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '0.1'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: csv
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '3.0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '3.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: json
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
@@ -53,7 +53,7 @@ dependencies:
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '2.0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
56
|
+
name: multipart-post
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
@@ -67,33 +67,33 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '2.0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
70
|
+
name: rest-client
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
76
|
-
type: :
|
75
|
+
version: '2.0'
|
76
|
+
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
82
|
+
version: '2.0'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
|
-
name:
|
84
|
+
name: uri
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: '
|
90
|
-
type: :
|
89
|
+
version: '0.10'
|
90
|
+
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: '
|
96
|
+
version: '0.10'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: mysql2
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -101,7 +101,7 @@ dependencies:
|
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
103
|
version: 0.5.2
|
104
|
-
type: :
|
104
|
+
type: :runtime
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
@@ -116,41 +116,476 @@ executables: []
|
|
116
116
|
extensions: []
|
117
117
|
extra_rdoc_files: []
|
118
118
|
files:
|
119
|
-
-
|
120
|
-
-
|
121
|
-
-
|
122
|
-
-
|
123
|
-
-
|
124
|
-
-
|
125
|
-
-
|
126
|
-
-
|
127
|
-
-
|
128
|
-
-
|
129
|
-
-
|
130
|
-
-
|
131
|
-
-
|
119
|
+
- src/ZCRMSDK.rb
|
120
|
+
- src/com/zoho/api/authenticator/oauth_token.rb
|
121
|
+
- src/com/zoho/api/authenticator/store/db_store.rb
|
122
|
+
- src/com/zoho/api/authenticator/store/file_store.rb
|
123
|
+
- src/com/zoho/api/authenticator/store/token_store.rb
|
124
|
+
- src/com/zoho/api/authenticator/token.rb
|
125
|
+
- src/com/zoho/api/logger/sdk_logger.rb
|
126
|
+
- src/com/zoho/crm/api/assignment_rules/api_exception.rb
|
127
|
+
- src/com/zoho/crm/api/assignment_rules/assignment_rule.rb
|
128
|
+
- src/com/zoho/crm/api/assignment_rules/assignment_rules_operations.rb
|
129
|
+
- src/com/zoho/crm/api/assignment_rules/default_user.rb
|
130
|
+
- src/com/zoho/crm/api/assignment_rules/response_handler.rb
|
131
|
+
- src/com/zoho/crm/api/assignment_rules/response_wrapper.rb
|
132
|
+
- src/com/zoho/crm/api/attachments/action_handler.rb
|
133
|
+
- src/com/zoho/crm/api/attachments/action_response.rb
|
134
|
+
- src/com/zoho/crm/api/attachments/action_wrapper.rb
|
135
|
+
- src/com/zoho/crm/api/attachments/api_exception.rb
|
136
|
+
- src/com/zoho/crm/api/attachments/attachment.rb
|
137
|
+
- src/com/zoho/crm/api/attachments/attachments_operations.rb
|
138
|
+
- src/com/zoho/crm/api/attachments/file_body_wrapper.rb
|
139
|
+
- src/com/zoho/crm/api/attachments/response_handler.rb
|
140
|
+
- src/com/zoho/crm/api/attachments/response_wrapper.rb
|
141
|
+
- src/com/zoho/crm/api/attachments/success_response.rb
|
142
|
+
- src/com/zoho/crm/api/blue_print/action_response.rb
|
143
|
+
- src/com/zoho/crm/api/blue_print/api_exception.rb
|
144
|
+
- src/com/zoho/crm/api/blue_print/blue_print.rb
|
145
|
+
- src/com/zoho/crm/api/blue_print/blue_print_operations.rb
|
146
|
+
- src/com/zoho/crm/api/blue_print/body_wrapper.rb
|
147
|
+
- src/com/zoho/crm/api/blue_print/escalation.rb
|
148
|
+
- src/com/zoho/crm/api/blue_print/field.rb
|
149
|
+
- src/com/zoho/crm/api/blue_print/next_transition.rb
|
150
|
+
- src/com/zoho/crm/api/blue_print/process_info.rb
|
151
|
+
- src/com/zoho/crm/api/blue_print/response_handler.rb
|
152
|
+
- src/com/zoho/crm/api/blue_print/response_wrapper.rb
|
153
|
+
- src/com/zoho/crm/api/blue_print/success_response.rb
|
154
|
+
- src/com/zoho/crm/api/blue_print/transition.rb
|
155
|
+
- src/com/zoho/crm/api/blue_print/validation_error.rb
|
156
|
+
- src/com/zoho/crm/api/bulk_read/action_handler.rb
|
157
|
+
- src/com/zoho/crm/api/bulk_read/action_response.rb
|
158
|
+
- src/com/zoho/crm/api/bulk_read/action_wrapper.rb
|
159
|
+
- src/com/zoho/crm/api/bulk_read/api_exception.rb
|
160
|
+
- src/com/zoho/crm/api/bulk_read/bulk_read_operations.rb
|
161
|
+
- src/com/zoho/crm/api/bulk_read/call_back.rb
|
162
|
+
- src/com/zoho/crm/api/bulk_read/criteria.rb
|
163
|
+
- src/com/zoho/crm/api/bulk_read/file_body_wrapper.rb
|
164
|
+
- src/com/zoho/crm/api/bulk_read/job_detail.rb
|
165
|
+
- src/com/zoho/crm/api/bulk_read/query.rb
|
166
|
+
- src/com/zoho/crm/api/bulk_read/request_wrapper.rb
|
167
|
+
- src/com/zoho/crm/api/bulk_read/response_handler.rb
|
168
|
+
- src/com/zoho/crm/api/bulk_read/response_wrapper.rb
|
169
|
+
- src/com/zoho/crm/api/bulk_read/result.rb
|
170
|
+
- src/com/zoho/crm/api/bulk_read/success_response.rb
|
171
|
+
- src/com/zoho/crm/api/bulk_write/action_response.rb
|
172
|
+
- src/com/zoho/crm/api/bulk_write/api_exception.rb
|
173
|
+
- src/com/zoho/crm/api/bulk_write/bulk_write_operations.rb
|
174
|
+
- src/com/zoho/crm/api/bulk_write/bulk_write_response.rb
|
175
|
+
- src/com/zoho/crm/api/bulk_write/call_back.rb
|
176
|
+
- src/com/zoho/crm/api/bulk_write/field_mapping.rb
|
177
|
+
- src/com/zoho/crm/api/bulk_write/file.rb
|
178
|
+
- src/com/zoho/crm/api/bulk_write/file_body_wrapper.rb
|
179
|
+
- src/com/zoho/crm/api/bulk_write/request_wrapper.rb
|
180
|
+
- src/com/zoho/crm/api/bulk_write/resource.rb
|
181
|
+
- src/com/zoho/crm/api/bulk_write/response_handler.rb
|
182
|
+
- src/com/zoho/crm/api/bulk_write/response_wrapper.rb
|
183
|
+
- src/com/zoho/crm/api/bulk_write/result.rb
|
184
|
+
- src/com/zoho/crm/api/bulk_write/success_response.rb
|
185
|
+
- src/com/zoho/crm/api/contact_roles/action_handler.rb
|
186
|
+
- src/com/zoho/crm/api/contact_roles/action_response.rb
|
187
|
+
- src/com/zoho/crm/api/contact_roles/action_wrapper.rb
|
188
|
+
- src/com/zoho/crm/api/contact_roles/api_exception.rb
|
189
|
+
- src/com/zoho/crm/api/contact_roles/body_wrapper.rb
|
190
|
+
- src/com/zoho/crm/api/contact_roles/contact_role.rb
|
191
|
+
- src/com/zoho/crm/api/contact_roles/contact_roles_operations.rb
|
192
|
+
- src/com/zoho/crm/api/contact_roles/response_handler.rb
|
193
|
+
- src/com/zoho/crm/api/contact_roles/response_wrapper.rb
|
194
|
+
- src/com/zoho/crm/api/contact_roles/success_response.rb
|
195
|
+
- src/com/zoho/crm/api/currencies/action_handler.rb
|
196
|
+
- src/com/zoho/crm/api/currencies/action_response.rb
|
197
|
+
- src/com/zoho/crm/api/currencies/action_wrapper.rb
|
198
|
+
- src/com/zoho/crm/api/currencies/api_exception.rb
|
199
|
+
- src/com/zoho/crm/api/currencies/base_currency_action_handler.rb
|
200
|
+
- src/com/zoho/crm/api/currencies/base_currency_action_wrapper.rb
|
201
|
+
- src/com/zoho/crm/api/currencies/base_currency_wrapper.rb
|
202
|
+
- src/com/zoho/crm/api/currencies/body_wrapper.rb
|
203
|
+
- src/com/zoho/crm/api/currencies/currencies_operations.rb
|
204
|
+
- src/com/zoho/crm/api/currencies/currency.rb
|
205
|
+
- src/com/zoho/crm/api/currencies/format.rb
|
206
|
+
- src/com/zoho/crm/api/currencies/response_handler.rb
|
207
|
+
- src/com/zoho/crm/api/currencies/response_wrapper.rb
|
208
|
+
- src/com/zoho/crm/api/currencies/success_response.rb
|
209
|
+
- src/com/zoho/crm/api/custom_views/api_exception.rb
|
210
|
+
- src/com/zoho/crm/api/custom_views/criteria.rb
|
211
|
+
- src/com/zoho/crm/api/custom_views/custom_view.rb
|
212
|
+
- src/com/zoho/crm/api/custom_views/custom_views_operations.rb
|
213
|
+
- src/com/zoho/crm/api/custom_views/info.rb
|
214
|
+
- src/com/zoho/crm/api/custom_views/range.rb
|
215
|
+
- src/com/zoho/crm/api/custom_views/response_handler.rb
|
216
|
+
- src/com/zoho/crm/api/custom_views/response_wrapper.rb
|
217
|
+
- src/com/zoho/crm/api/custom_views/shared_to.rb
|
218
|
+
- src/com/zoho/crm/api/custom_views/translation.rb
|
219
|
+
- src/com/zoho/crm/api/dc/au_datacenter.rb
|
220
|
+
- src/com/zoho/crm/api/dc/cn_datacenter.rb
|
221
|
+
- src/com/zoho/crm/api/dc/datacenter.rb
|
222
|
+
- src/com/zoho/crm/api/dc/eu_datacenter.rb
|
223
|
+
- src/com/zoho/crm/api/dc/in_datacenter.rb
|
224
|
+
- src/com/zoho/crm/api/dc/us_datacenter.rb
|
225
|
+
- src/com/zoho/crm/api/email_templates/api_exception.rb
|
226
|
+
- src/com/zoho/crm/api/email_templates/attachment.rb
|
227
|
+
- src/com/zoho/crm/api/email_templates/email_template.rb
|
228
|
+
- src/com/zoho/crm/api/email_templates/email_templates_operations.rb
|
229
|
+
- src/com/zoho/crm/api/email_templates/response_handler.rb
|
230
|
+
- src/com/zoho/crm/api/email_templates/response_wrapper.rb
|
231
|
+
- src/com/zoho/crm/api/exception/sdk_exception.rb
|
232
|
+
- src/com/zoho/crm/api/field_attachments/api_exception.rb
|
233
|
+
- src/com/zoho/crm/api/field_attachments/body_wrapper.rb
|
234
|
+
- src/com/zoho/crm/api/field_attachments/field_attachments_operations.rb
|
235
|
+
- src/com/zoho/crm/api/field_attachments/file_body_wrapper.rb
|
236
|
+
- src/com/zoho/crm/api/field_attachments/response_handler.rb
|
237
|
+
- src/com/zoho/crm/api/fields/api_exception.rb
|
238
|
+
- src/com/zoho/crm/api/fields/association_details.rb
|
239
|
+
- src/com/zoho/crm/api/fields/auto_number.rb
|
240
|
+
- src/com/zoho/crm/api/fields/crypt.rb
|
241
|
+
- src/com/zoho/crm/api/fields/currency.rb
|
242
|
+
- src/com/zoho/crm/api/fields/external.rb
|
243
|
+
- src/com/zoho/crm/api/fields/field.rb
|
244
|
+
- src/com/zoho/crm/api/fields/fields_operations.rb
|
245
|
+
- src/com/zoho/crm/api/fields/formula.rb
|
246
|
+
- src/com/zoho/crm/api/fields/history_tracking.rb
|
247
|
+
- src/com/zoho/crm/api/fields/lookup_field.rb
|
248
|
+
- src/com/zoho/crm/api/fields/maps.rb
|
249
|
+
- src/com/zoho/crm/api/fields/module.rb
|
250
|
+
- src/com/zoho/crm/api/fields/multi_module_lookup.rb
|
251
|
+
- src/com/zoho/crm/api/fields/multi_select_lookup.rb
|
252
|
+
- src/com/zoho/crm/api/fields/multi_user_lookup.rb
|
253
|
+
- src/com/zoho/crm/api/fields/pick_list_value.rb
|
254
|
+
- src/com/zoho/crm/api/fields/private.rb
|
255
|
+
- src/com/zoho/crm/api/fields/related_details.rb
|
256
|
+
- src/com/zoho/crm/api/fields/response_handler.rb
|
257
|
+
- src/com/zoho/crm/api/fields/response_wrapper.rb
|
258
|
+
- src/com/zoho/crm/api/fields/tool_tip.rb
|
259
|
+
- src/com/zoho/crm/api/fields/unique.rb
|
260
|
+
- src/com/zoho/crm/api/fields/view_type.rb
|
261
|
+
- src/com/zoho/crm/api/files/action_handler.rb
|
262
|
+
- src/com/zoho/crm/api/files/action_response.rb
|
263
|
+
- src/com/zoho/crm/api/files/action_wrapper.rb
|
264
|
+
- src/com/zoho/crm/api/files/api_exception.rb
|
265
|
+
- src/com/zoho/crm/api/files/body_wrapper.rb
|
266
|
+
- src/com/zoho/crm/api/files/file_body_wrapper.rb
|
267
|
+
- src/com/zoho/crm/api/files/file_operations.rb
|
268
|
+
- src/com/zoho/crm/api/files/response_handler.rb
|
269
|
+
- src/com/zoho/crm/api/files/success_response.rb
|
270
|
+
- src/com/zoho/crm/api/header.rb
|
271
|
+
- src/com/zoho/crm/api/header_map.rb
|
272
|
+
- src/com/zoho/crm/api/initializer.rb
|
273
|
+
- src/com/zoho/crm/api/inventory_templates/api_exception.rb
|
274
|
+
- src/com/zoho/crm/api/inventory_templates/inventory_template.rb
|
275
|
+
- src/com/zoho/crm/api/inventory_templates/inventory_templates_operations.rb
|
276
|
+
- src/com/zoho/crm/api/inventory_templates/response_handler.rb
|
277
|
+
- src/com/zoho/crm/api/inventory_templates/response_wrapper.rb
|
278
|
+
- src/com/zoho/crm/api/layouts/api_exception.rb
|
279
|
+
- src/com/zoho/crm/api/layouts/layout.rb
|
280
|
+
- src/com/zoho/crm/api/layouts/layouts_operations.rb
|
281
|
+
- src/com/zoho/crm/api/layouts/properties.rb
|
282
|
+
- src/com/zoho/crm/api/layouts/response_handler.rb
|
283
|
+
- src/com/zoho/crm/api/layouts/response_wrapper.rb
|
284
|
+
- src/com/zoho/crm/api/layouts/section.rb
|
285
|
+
- src/com/zoho/crm/api/modules/action_handler.rb
|
286
|
+
- src/com/zoho/crm/api/modules/action_response.rb
|
287
|
+
- src/com/zoho/crm/api/modules/action_wrapper.rb
|
288
|
+
- src/com/zoho/crm/api/modules/api_exception.rb
|
289
|
+
- src/com/zoho/crm/api/modules/argument.rb
|
290
|
+
- src/com/zoho/crm/api/modules/body_wrapper.rb
|
291
|
+
- src/com/zoho/crm/api/modules/module.rb
|
292
|
+
- src/com/zoho/crm/api/modules/modules_operations.rb
|
293
|
+
- src/com/zoho/crm/api/modules/related_list_properties.rb
|
294
|
+
- src/com/zoho/crm/api/modules/response_handler.rb
|
295
|
+
- src/com/zoho/crm/api/modules/response_wrapper.rb
|
296
|
+
- src/com/zoho/crm/api/modules/success_response.rb
|
297
|
+
- src/com/zoho/crm/api/modules/territory.rb
|
298
|
+
- src/com/zoho/crm/api/notes/action_handler.rb
|
299
|
+
- src/com/zoho/crm/api/notes/action_response.rb
|
300
|
+
- src/com/zoho/crm/api/notes/action_wrapper.rb
|
301
|
+
- src/com/zoho/crm/api/notes/api_exception.rb
|
302
|
+
- src/com/zoho/crm/api/notes/body_wrapper.rb
|
303
|
+
- src/com/zoho/crm/api/notes/info.rb
|
304
|
+
- src/com/zoho/crm/api/notes/note.rb
|
305
|
+
- src/com/zoho/crm/api/notes/notes_operations.rb
|
306
|
+
- src/com/zoho/crm/api/notes/response_handler.rb
|
307
|
+
- src/com/zoho/crm/api/notes/response_wrapper.rb
|
308
|
+
- src/com/zoho/crm/api/notes/success_response.rb
|
309
|
+
- src/com/zoho/crm/api/notification/action_handler.rb
|
310
|
+
- src/com/zoho/crm/api/notification/action_response.rb
|
311
|
+
- src/com/zoho/crm/api/notification/action_wrapper.rb
|
312
|
+
- src/com/zoho/crm/api/notification/api_exception.rb
|
313
|
+
- src/com/zoho/crm/api/notification/body_wrapper.rb
|
314
|
+
- src/com/zoho/crm/api/notification/info.rb
|
315
|
+
- src/com/zoho/crm/api/notification/notification.rb
|
316
|
+
- src/com/zoho/crm/api/notification/notification_operations.rb
|
317
|
+
- src/com/zoho/crm/api/notification/response_handler.rb
|
318
|
+
- src/com/zoho/crm/api/notification/response_wrapper.rb
|
319
|
+
- src/com/zoho/crm/api/notification/success_response.rb
|
320
|
+
- src/com/zoho/crm/api/org/action_response.rb
|
321
|
+
- src/com/zoho/crm/api/org/api_exception.rb
|
322
|
+
- src/com/zoho/crm/api/org/file_body_wrapper.rb
|
323
|
+
- src/com/zoho/crm/api/org/hierarchy_preference.rb
|
324
|
+
- src/com/zoho/crm/api/org/license_details.rb
|
325
|
+
- src/com/zoho/crm/api/org/org.rb
|
326
|
+
- src/com/zoho/crm/api/org/org_operations.rb
|
327
|
+
- src/com/zoho/crm/api/org/response_handler.rb
|
328
|
+
- src/com/zoho/crm/api/org/response_wrapper.rb
|
329
|
+
- src/com/zoho/crm/api/org/success_response.rb
|
330
|
+
- src/com/zoho/crm/api/param.rb
|
331
|
+
- src/com/zoho/crm/api/parameter_map.rb
|
332
|
+
- src/com/zoho/crm/api/pipeline/action_handler.rb
|
333
|
+
- src/com/zoho/crm/api/pipeline/action_response.rb
|
334
|
+
- src/com/zoho/crm/api/pipeline/action_wrapper.rb
|
335
|
+
- src/com/zoho/crm/api/pipeline/api_exception.rb
|
336
|
+
- src/com/zoho/crm/api/pipeline/body_wrapper.rb
|
337
|
+
- src/com/zoho/crm/api/pipeline/forecast_category.rb
|
338
|
+
- src/com/zoho/crm/api/pipeline/pick_list_value.rb
|
339
|
+
- src/com/zoho/crm/api/pipeline/pipeline.rb
|
340
|
+
- src/com/zoho/crm/api/pipeline/pipeline_operations.rb
|
341
|
+
- src/com/zoho/crm/api/pipeline/response_handler.rb
|
342
|
+
- src/com/zoho/crm/api/pipeline/response_wrapper.rb
|
343
|
+
- src/com/zoho/crm/api/pipeline/stage.rb
|
344
|
+
- src/com/zoho/crm/api/pipeline/success_response.rb
|
345
|
+
- src/com/zoho/crm/api/pipeline/transfer_action_handler.rb
|
346
|
+
- src/com/zoho/crm/api/pipeline/transfer_action_response.rb
|
347
|
+
- src/com/zoho/crm/api/pipeline/transfer_action_wrapper.rb
|
348
|
+
- src/com/zoho/crm/api/pipeline/transfer_and_delete_wrapper.rb
|
349
|
+
- src/com/zoho/crm/api/pipeline/transfer_pipe_line.rb
|
350
|
+
- src/com/zoho/crm/api/profiles/api_exception.rb
|
351
|
+
- src/com/zoho/crm/api/profiles/category.rb
|
352
|
+
- src/com/zoho/crm/api/profiles/default_view.rb
|
353
|
+
- src/com/zoho/crm/api/profiles/permission_detail.rb
|
354
|
+
- src/com/zoho/crm/api/profiles/profile.rb
|
355
|
+
- src/com/zoho/crm/api/profiles/profiles_operations.rb
|
356
|
+
- src/com/zoho/crm/api/profiles/response_handler.rb
|
357
|
+
- src/com/zoho/crm/api/profiles/response_wrapper.rb
|
358
|
+
- src/com/zoho/crm/api/profiles/section.rb
|
359
|
+
- src/com/zoho/crm/api/query/api_exception.rb
|
360
|
+
- src/com/zoho/crm/api/query/body_wrapper.rb
|
361
|
+
- src/com/zoho/crm/api/query/query_operations.rb
|
362
|
+
- src/com/zoho/crm/api/query/response_handler.rb
|
363
|
+
- src/com/zoho/crm/api/query/response_wrapper.rb
|
364
|
+
- src/com/zoho/crm/api/record/action_handler.rb
|
365
|
+
- src/com/zoho/crm/api/record/action_response.rb
|
366
|
+
- src/com/zoho/crm/api/record/action_wrapper.rb
|
367
|
+
- src/com/zoho/crm/api/record/api_exception.rb
|
368
|
+
- src/com/zoho/crm/api/record/body_wrapper.rb
|
369
|
+
- src/com/zoho/crm/api/record/carry_over_tags.rb
|
370
|
+
- src/com/zoho/crm/api/record/comment.rb
|
371
|
+
- src/com/zoho/crm/api/record/consent.rb
|
372
|
+
- src/com/zoho/crm/api/record/convert_action_handler.rb
|
373
|
+
- src/com/zoho/crm/api/record/convert_action_response.rb
|
374
|
+
- src/com/zoho/crm/api/record/convert_action_wrapper.rb
|
375
|
+
- src/com/zoho/crm/api/record/convert_body_wrapper.rb
|
376
|
+
- src/com/zoho/crm/api/record/count_handler.rb
|
377
|
+
- src/com/zoho/crm/api/record/count_wrapper.rb
|
378
|
+
- src/com/zoho/crm/api/record/criteria.rb
|
379
|
+
- src/com/zoho/crm/api/record/deleted_record.rb
|
380
|
+
- src/com/zoho/crm/api/record/deleted_records_handler.rb
|
381
|
+
- src/com/zoho/crm/api/record/deleted_records_wrapper.rb
|
382
|
+
- src/com/zoho/crm/api/record/download_handler.rb
|
383
|
+
- src/com/zoho/crm/api/record/field.rb
|
384
|
+
- src/com/zoho/crm/api/record/file_body_wrapper.rb
|
385
|
+
- src/com/zoho/crm/api/record/file_details.rb
|
386
|
+
- src/com/zoho/crm/api/record/file_handler.rb
|
387
|
+
- src/com/zoho/crm/api/record/image_upload.rb
|
388
|
+
- src/com/zoho/crm/api/record/info.rb
|
389
|
+
- src/com/zoho/crm/api/record/lead_converter.rb
|
390
|
+
- src/com/zoho/crm/api/record/line_item_product.rb
|
391
|
+
- src/com/zoho/crm/api/record/line_tax.rb
|
392
|
+
- src/com/zoho/crm/api/record/mass_update.rb
|
393
|
+
- src/com/zoho/crm/api/record/mass_update_action_handler.rb
|
394
|
+
- src/com/zoho/crm/api/record/mass_update_action_response.rb
|
395
|
+
- src/com/zoho/crm/api/record/mass_update_action_wrapper.rb
|
396
|
+
- src/com/zoho/crm/api/record/mass_update_body_wrapper.rb
|
397
|
+
- src/com/zoho/crm/api/record/mass_update_response.rb
|
398
|
+
- src/com/zoho/crm/api/record/mass_update_response_handler.rb
|
399
|
+
- src/com/zoho/crm/api/record/mass_update_response_wrapper.rb
|
400
|
+
- src/com/zoho/crm/api/record/mass_update_success_response.rb
|
401
|
+
- src/com/zoho/crm/api/record/mass_update_territory.rb
|
402
|
+
- src/com/zoho/crm/api/record/multi_select_lookup.rb
|
403
|
+
- src/com/zoho/crm/api/record/multi_select_picklist.rb
|
404
|
+
- src/com/zoho/crm/api/record/options.rb
|
405
|
+
- src/com/zoho/crm/api/record/participants.rb
|
406
|
+
- src/com/zoho/crm/api/record/price_book.rb
|
407
|
+
- src/com/zoho/crm/api/record/pricing_details.rb
|
408
|
+
- src/com/zoho/crm/api/record/record.rb
|
409
|
+
- src/com/zoho/crm/api/record/record_operations.rb
|
410
|
+
- src/com/zoho/crm/api/record/recurring_activity.rb
|
411
|
+
- src/com/zoho/crm/api/record/remind_at.rb
|
412
|
+
- src/com/zoho/crm/api/record/reminder.rb
|
413
|
+
- src/com/zoho/crm/api/record/response_handler.rb
|
414
|
+
- src/com/zoho/crm/api/record/response_wrapper.rb
|
415
|
+
- src/com/zoho/crm/api/record/success_response.rb
|
416
|
+
- src/com/zoho/crm/api/record/successful_convert.rb
|
417
|
+
- src/com/zoho/crm/api/record/tax.rb
|
418
|
+
- src/com/zoho/crm/api/record/territory.rb
|
419
|
+
- src/com/zoho/crm/api/record/widget.rb
|
420
|
+
- src/com/zoho/crm/api/record/wizard.rb
|
421
|
+
- src/com/zoho/crm/api/related_lists/api_exception.rb
|
422
|
+
- src/com/zoho/crm/api/related_lists/related_list.rb
|
423
|
+
- src/com/zoho/crm/api/related_lists/related_lists_operations.rb
|
424
|
+
- src/com/zoho/crm/api/related_lists/response_handler.rb
|
425
|
+
- src/com/zoho/crm/api/related_lists/response_wrapper.rb
|
426
|
+
- src/com/zoho/crm/api/related_records/action_handler.rb
|
427
|
+
- src/com/zoho/crm/api/related_records/action_response.rb
|
428
|
+
- src/com/zoho/crm/api/related_records/action_wrapper.rb
|
429
|
+
- src/com/zoho/crm/api/related_records/api_exception.rb
|
430
|
+
- src/com/zoho/crm/api/related_records/body_wrapper.rb
|
431
|
+
- src/com/zoho/crm/api/related_records/file_body_wrapper.rb
|
432
|
+
- src/com/zoho/crm/api/related_records/related_records_operations.rb
|
433
|
+
- src/com/zoho/crm/api/related_records/response_handler.rb
|
434
|
+
- src/com/zoho/crm/api/related_records/response_wrapper.rb
|
435
|
+
- src/com/zoho/crm/api/related_records/success_response.rb
|
436
|
+
- src/com/zoho/crm/api/request_proxy.rb
|
437
|
+
- src/com/zoho/crm/api/roles/api_exception.rb
|
438
|
+
- src/com/zoho/crm/api/roles/response_handler.rb
|
439
|
+
- src/com/zoho/crm/api/roles/response_wrapper.rb
|
440
|
+
- src/com/zoho/crm/api/roles/role.rb
|
441
|
+
- src/com/zoho/crm/api/roles/roles_operations.rb
|
442
|
+
- src/com/zoho/crm/api/sdk_config.rb
|
443
|
+
- src/com/zoho/crm/api/send_mail/action_handler.rb
|
444
|
+
- src/com/zoho/crm/api/send_mail/action_response.rb
|
445
|
+
- src/com/zoho/crm/api/send_mail/action_wrapper.rb
|
446
|
+
- src/com/zoho/crm/api/send_mail/api_exception.rb
|
447
|
+
- src/com/zoho/crm/api/send_mail/body_wrapper.rb
|
448
|
+
- src/com/zoho/crm/api/send_mail/data_subject_request.rb
|
449
|
+
- src/com/zoho/crm/api/send_mail/inventory_details.rb
|
450
|
+
- src/com/zoho/crm/api/send_mail/mail.rb
|
451
|
+
- src/com/zoho/crm/api/send_mail/response_handler.rb
|
452
|
+
- src/com/zoho/crm/api/send_mail/response_wrapper.rb
|
453
|
+
- src/com/zoho/crm/api/send_mail/send_mail_operations.rb
|
454
|
+
- src/com/zoho/crm/api/send_mail/success_response.rb
|
455
|
+
- src/com/zoho/crm/api/send_mail/template.rb
|
456
|
+
- src/com/zoho/crm/api/send_mail/user_address.rb
|
457
|
+
- src/com/zoho/crm/api/share_records/action_handler.rb
|
458
|
+
- src/com/zoho/crm/api/share_records/action_response.rb
|
459
|
+
- src/com/zoho/crm/api/share_records/action_wrapper.rb
|
460
|
+
- src/com/zoho/crm/api/share_records/api_exception.rb
|
461
|
+
- src/com/zoho/crm/api/share_records/body_wrapper.rb
|
462
|
+
- src/com/zoho/crm/api/share_records/delete_action_handler.rb
|
463
|
+
- src/com/zoho/crm/api/share_records/delete_action_response.rb
|
464
|
+
- src/com/zoho/crm/api/share_records/delete_action_wrapper.rb
|
465
|
+
- src/com/zoho/crm/api/share_records/response_handler.rb
|
466
|
+
- src/com/zoho/crm/api/share_records/response_wrapper.rb
|
467
|
+
- src/com/zoho/crm/api/share_records/share_record.rb
|
468
|
+
- src/com/zoho/crm/api/share_records/share_records_operations.rb
|
469
|
+
- src/com/zoho/crm/api/share_records/shared_through.rb
|
470
|
+
- src/com/zoho/crm/api/share_records/success_response.rb
|
471
|
+
- src/com/zoho/crm/api/tags/action_handler.rb
|
472
|
+
- src/com/zoho/crm/api/tags/action_response.rb
|
473
|
+
- src/com/zoho/crm/api/tags/action_wrapper.rb
|
474
|
+
- src/com/zoho/crm/api/tags/api_exception.rb
|
475
|
+
- src/com/zoho/crm/api/tags/body_wrapper.rb
|
476
|
+
- src/com/zoho/crm/api/tags/conflict_wrapper.rb
|
477
|
+
- src/com/zoho/crm/api/tags/count_handler.rb
|
478
|
+
- src/com/zoho/crm/api/tags/count_wrapper.rb
|
479
|
+
- src/com/zoho/crm/api/tags/info.rb
|
480
|
+
- src/com/zoho/crm/api/tags/merge_wrapper.rb
|
481
|
+
- src/com/zoho/crm/api/tags/record_action_handler.rb
|
482
|
+
- src/com/zoho/crm/api/tags/record_action_response.rb
|
483
|
+
- src/com/zoho/crm/api/tags/record_action_wrapper.rb
|
484
|
+
- src/com/zoho/crm/api/tags/response_handler.rb
|
485
|
+
- src/com/zoho/crm/api/tags/response_wrapper.rb
|
486
|
+
- src/com/zoho/crm/api/tags/success_response.rb
|
487
|
+
- src/com/zoho/crm/api/tags/tag.rb
|
488
|
+
- src/com/zoho/crm/api/tags/tags_operations.rb
|
489
|
+
- src/com/zoho/crm/api/taxes/action_handler.rb
|
490
|
+
- src/com/zoho/crm/api/taxes/action_response.rb
|
491
|
+
- src/com/zoho/crm/api/taxes/action_wrapper.rb
|
492
|
+
- src/com/zoho/crm/api/taxes/api_exception.rb
|
493
|
+
- src/com/zoho/crm/api/taxes/body_wrapper.rb
|
494
|
+
- src/com/zoho/crm/api/taxes/preference.rb
|
495
|
+
- src/com/zoho/crm/api/taxes/response_handler.rb
|
496
|
+
- src/com/zoho/crm/api/taxes/response_wrapper.rb
|
497
|
+
- src/com/zoho/crm/api/taxes/success_response.rb
|
498
|
+
- src/com/zoho/crm/api/taxes/tax.rb
|
499
|
+
- src/com/zoho/crm/api/taxes/taxes_operations.rb
|
500
|
+
- src/com/zoho/crm/api/territories/api_exception.rb
|
501
|
+
- src/com/zoho/crm/api/territories/response_handler.rb
|
502
|
+
- src/com/zoho/crm/api/territories/response_wrapper.rb
|
503
|
+
- src/com/zoho/crm/api/territories/territories_operations.rb
|
504
|
+
- src/com/zoho/crm/api/territories/territory.rb
|
505
|
+
- src/com/zoho/crm/api/user_signature.rb
|
506
|
+
- src/com/zoho/crm/api/users/action_handler.rb
|
507
|
+
- src/com/zoho/crm/api/users/action_response.rb
|
508
|
+
- src/com/zoho/crm/api/users/action_wrapper.rb
|
509
|
+
- src/com/zoho/crm/api/users/api_exception.rb
|
510
|
+
- src/com/zoho/crm/api/users/body_wrapper.rb
|
511
|
+
- src/com/zoho/crm/api/users/customize_info.rb
|
512
|
+
- src/com/zoho/crm/api/users/info.rb
|
513
|
+
- src/com/zoho/crm/api/users/request_wrapper.rb
|
514
|
+
- src/com/zoho/crm/api/users/response_handler.rb
|
515
|
+
- src/com/zoho/crm/api/users/response_wrapper.rb
|
516
|
+
- src/com/zoho/crm/api/users/shift.rb
|
517
|
+
- src/com/zoho/crm/api/users/success_response.rb
|
518
|
+
- src/com/zoho/crm/api/users/tab_theme.rb
|
519
|
+
- src/com/zoho/crm/api/users/territory.rb
|
520
|
+
- src/com/zoho/crm/api/users/theme.rb
|
521
|
+
- src/com/zoho/crm/api/users/user.rb
|
522
|
+
- src/com/zoho/crm/api/users/users_operations.rb
|
523
|
+
- src/com/zoho/crm/api/util/api_http_connector.rb
|
524
|
+
- src/com/zoho/crm/api/util/api_response.rb
|
525
|
+
- src/com/zoho/crm/api/util/choice.rb
|
526
|
+
- src/com/zoho/crm/api/util/common_api_handler.rb
|
527
|
+
- src/com/zoho/crm/api/util/constants.rb
|
528
|
+
- src/com/zoho/crm/api/util/converter.rb
|
529
|
+
- src/com/zoho/crm/api/util/data_type_converter.rb
|
530
|
+
- src/com/zoho/crm/api/util/downloader.rb
|
531
|
+
- src/com/zoho/crm/api/util/form_data_converter.rb
|
532
|
+
- src/com/zoho/crm/api/util/header_param_validator.rb
|
533
|
+
- src/com/zoho/crm/api/util/json_converter.rb
|
534
|
+
- src/com/zoho/crm/api/util/model.rb
|
535
|
+
- src/com/zoho/crm/api/util/module_fields_handler.rb
|
536
|
+
- src/com/zoho/crm/api/util/stream_wrapper.rb
|
537
|
+
- src/com/zoho/crm/api/util/utility.rb
|
538
|
+
- src/com/zoho/crm/api/variable_groups/api_exception.rb
|
539
|
+
- src/com/zoho/crm/api/variable_groups/response_handler.rb
|
540
|
+
- src/com/zoho/crm/api/variable_groups/response_wrapper.rb
|
541
|
+
- src/com/zoho/crm/api/variable_groups/variable_group.rb
|
542
|
+
- src/com/zoho/crm/api/variable_groups/variable_groups_operations.rb
|
543
|
+
- src/com/zoho/crm/api/variables/action_handler.rb
|
544
|
+
- src/com/zoho/crm/api/variables/action_response.rb
|
545
|
+
- src/com/zoho/crm/api/variables/action_wrapper.rb
|
546
|
+
- src/com/zoho/crm/api/variables/api_exception.rb
|
547
|
+
- src/com/zoho/crm/api/variables/body_wrapper.rb
|
548
|
+
- src/com/zoho/crm/api/variables/response_handler.rb
|
549
|
+
- src/com/zoho/crm/api/variables/response_wrapper.rb
|
550
|
+
- src/com/zoho/crm/api/variables/success_response.rb
|
551
|
+
- src/com/zoho/crm/api/variables/variable.rb
|
552
|
+
- src/com/zoho/crm/api/variables/variables_operations.rb
|
553
|
+
- src/com/zoho/crm/api/wizards/api_exception.rb
|
554
|
+
- src/com/zoho/crm/api/wizards/button.rb
|
555
|
+
- src/com/zoho/crm/api/wizards/chart_data.rb
|
556
|
+
- src/com/zoho/crm/api/wizards/connection.rb
|
557
|
+
- src/com/zoho/crm/api/wizards/container.rb
|
558
|
+
- src/com/zoho/crm/api/wizards/node.rb
|
559
|
+
- src/com/zoho/crm/api/wizards/response_handler.rb
|
560
|
+
- src/com/zoho/crm/api/wizards/response_wrapper.rb
|
561
|
+
- src/com/zoho/crm/api/wizards/screen.rb
|
562
|
+
- src/com/zoho/crm/api/wizards/segment.rb
|
563
|
+
- src/com/zoho/crm/api/wizards/transition.rb
|
564
|
+
- src/com/zoho/crm/api/wizards/wizard.rb
|
565
|
+
- src/com/zoho/crm/api/wizards/wizards_operations.rb
|
566
|
+
- src/resources/JSONDetails.json
|
567
|
+
- src/version.rb
|
132
568
|
homepage: https://www.zoho.com/crm/
|
133
569
|
licenses: []
|
134
570
|
metadata:
|
135
|
-
source_code_uri: https://github.com/zoho/
|
136
|
-
post_install_message:
|
571
|
+
source_code_uri: https://github.com/zoho/zohocrm-ruby-sdk
|
572
|
+
post_install_message:
|
137
573
|
rdoc_options: []
|
138
574
|
require_paths:
|
139
|
-
-
|
575
|
+
- src
|
140
576
|
required_ruby_version: !ruby/object:Gem::Requirement
|
141
577
|
requirements:
|
142
578
|
- - ">="
|
143
579
|
- !ruby/object:Gem::Version
|
144
|
-
version: '
|
580
|
+
version: '2.6'
|
145
581
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
146
582
|
requirements:
|
147
583
|
- - ">="
|
148
584
|
- !ruby/object:Gem::Version
|
149
585
|
version: '0'
|
150
586
|
requirements: []
|
151
|
-
|
152
|
-
|
153
|
-
signing_key:
|
587
|
+
rubygems_version: 3.0.9
|
588
|
+
signing_key:
|
154
589
|
specification_version: 4
|
155
590
|
summary: API client for Zoho CRM
|
156
591
|
test_files: []
|