searchRecordsメソッド - 比較

目的

標準で用意されている項目に基づき、値を検索します。

リクエストURL

バージョン1.0:

https://crm.zoho.com/crm/private/xml/Leads/searchRecords?authtoken=AuthToken&scope=crmapi&criteria=(((Last Name:Steve)AND(Company:Zillum))OR(Lead Status:Contacted))

バージョン2.0:

URL: https://www.zohoapis.com/crm/v2/Leads/search?criteria=((Last_Name:starts_with:G) and (Email:equals:deborah@healthnet.com))

メソッド:GET

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

リクエストパラメーター

バージョン1.0バージョン2.0
authtoken=****Authorization=Zoho-oauthtoken ***** - ヘッダー
scope=crmapiN/A
selectColumns==Leads(First Name,Last Name,Email,Company,Campaign Source)fields=First_Name,Last_Name,Email,Company
First_Name,Last_Name,Email,Company are field API names
fromIndex=1&toIndex=20page=1&per_page=20
criteria=(((Last Name:Steve)AND(Company:Zillum))OR(Lead Status:Contacted))criteria=(((Last_Name:equals:Steve) and (Company:equals:Zillum)) or (Lead_Status:equals:Contacted))
newFormatN/A
lastModifiedTimeIf-Modified-Sinceヘッダー
 

APIリクエスト例:

バージョン1.0のリクエストバージョン2.0のリクエスト
https://crm.zoho.com/crm/private/xml/Leads/
getSearchRecordsByPDC?authtoken=*****
&searchColumn=email&searchValue=email@zoho.com
URL - https://crm.zoho.com/crm/v2/Leads/search?criteria=(Email:equals:email@zoho.com)
 

このレスポンスは、getRecords APIのレスポンスと類似しています。