getFieldsメソッド - 比較

目的

タブで使用できる項目の詳細を取得します。

リクエストURL

バージョン1.0:

https://crm.zoho.com/crm/private/xml/Leads/getFields?authtoken=AuthToken&scope=crmapi

バージョン2.0:

URL: https://www.zohoapis.com/crm/v2/settings/fields?module={module_api_name}

メソッド:GET

ヘッダー:Authorization=Zoho-oauthtoken {oauth_token}

リクエストパラメーター

バージョン1.0バージョン2.0
authtoken=****Authorization=Zoho-oauthtoken ***** - ヘッダー
scope=crmapiN/A
typeN/A

Sample Responses:

+
バージョン1.0のレスポンスバージョン2.0のレスポンス
<?xml version="1.0" encoding="UTF-8" ?>
<Leads>
<section name="Lead Information" dv="Lead Information">
<FL req="false" type="Lookup" isreadonly="false" maxlength="120" label="Lead Owner" dv="Lead Owner" customfield="false"></FL>
..
..
</section>
</Leads>
{
  "fields": [
   {
    "custom_field": false,
    "lookup": {},
    "visible": true,
    "webhook": true,
    "json_type": "jsonobject",
    "crypt": null,
    "field_label": "Lead Owner",
    "length": 120,
    "tooltip": null,
    "view_type": {
     "view": true,
     "edit": true,
     "quick_create": false,
     "create": true,
    },
    "created_source": "default",
    "read_only": false,
    "api_name": "Owner",
    "unique": {},
    "businesscard_supported": true,
    "data_type": "ownerlookup",
    "formula": {},
    "currency": {},
    "id": "1386586000000002589",
    "decimal_place": null,
    "pick_list_values": [],
    "multiselectlookup": {},
    "auto_number": {}
   },
  ...
  ]
 }
 

v2 APIのレスポンスでは、すべてのレイアウトの項目が表示されます。特定のレイアウトの項目を取得するには、https://www.zohoapis.com/crm/v2/settings/layouts?module=Leads, GET APIを呼び出す必要があります。