getRelatedRecords 方法 - 对比
用途
检索与主模块相关的记录。
请求URL
版本 1.0:
https://crm.zoho.com.cn/crm/private/xml/Contacts/getRelatedRecords?authtoken=AuthToken&scope=crmapi&id=Record ID&parentModule=Module Name
版本 2.0:
URL: https://www.zohoapis.com.cn/crm/v2/Accounts/{record_id}/{relatedlist_api_name}
Method: GET
Header: Authorization=Zoho-oauthtoken {oauth_token}
备注:
- 可以使用这个API(GET)找到相关列表的API名称 - https://www.zohoapis.com.cn/crm/v2/settings/related_lists?module=Accounts
请求参数
版本 1.0 | 版本 2.0 |
---|---|
authtoken=**** | Authorization=Zoho-oauthtoken ***** - 作为一个 Header。 |
scope=crmapi | N/A |
parentModule | 父模块 API 名称必须在请求URL中给出。 |
id | ID 必须在请求URL中给出。 |
fromIndex=1&toIndex=20 | page=1&per_page=20 |
newFormat | N/A |
示例响应:
版本 1.0 响应 | 版本 2.0 响应 |
---|---|
<?xml version="1.0" encoding="UTF-8" ?> <response uri="/crm/private/xml/Contacts/getRelatedRecords"> <result> <Contacts> <row no="1"> <FL val="CONTACTID">1386586000000803011</FL> <FL val="SMOWNERID">1386586000000078001</FL> <FL val="Contact Owner"><![CDATA[Bruce Wills]]></FL> <FL val="Lead Source"><![CDATA[External Referral]]></FL> <FL val="Last Name"><![CDATA[Marka]]></FL> .. </row> </Contacts> </result> </response> | { "data": [ { "Owner":{ "name":"Bruce Wills", "id":"1386586000000078001" }, "id":"1386586000000803011" ... "Last_Name":"Marka", "Lead_Source":"External Referral", } ], "info": { "per_page":200, "count":1, "page":1, "more_records": false }} |