updateRelatedRecordsメソッド - 比較

目的

別のデータに関連付けられているデータを更新します。

リクエストURL

バージョン1.0:

https://crm.zoho.com/crm/private/xml/Campaigns/updateRelatedRecords?authtoken=AuthToken&scope=crmapi&relatedModule=Contacts&xmlData=<Contacts><row no="1"><FLval="CONTACTID">9999999999</FL><FLval="member_status">Sent</FL></row></Contacts>&id=99999999999

バージョン2.0:

URL: https://www.zohoapis.com/crm/v2/{module_api_name}/{record_id}/{relatedlist_api_name}/{related_record_id}

メソッド:GET

リクエストボディ:JSON形式

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

例:https://www.zohoapis.com/crm/v2/Campaigns/1386586000000803001/Contacts/138658600000059902

  • 関連リストのAPI名は、次のAPI(GET)を使って確認できます - https://www.zohoapis.com/crm/v2/settings/related_lists?module=Campaigns

リクエストパラメーター

バージョン1.0バージョン2.0
authtoken=****Authorization=Zoho-oauthtoken ***** - ヘッダー
scope=crmapiN/A
relatedModuleリクエストURL内で指定してください。
idリクエストURL内で指定してください。
XmlData
Ex.xmlData=<Contacts><row no="1"><FLval="CONTACTID">1386586000000599023</FL><FLval="member_status">Sent</FL></row></Contacts>&id=1386586000000803001
N/A
必須データは、リクエストボディで指定する必要があります。
{
  "data": [
   {
    "Member_Status":"Sent"
   }
  ]
}

レスポンス例:

バージョン1.0のレスポンスバージョン2.0のレスポンス
<?xml version="1.0" encoding="UTF-8" ?>
<response uri="/crm/private/xml/Campaigns/updateRelatedRecords">
<result>
<status>
<code>200</code>
</status>
<success>
<code>4800</code>
</success>
<addedids>[1386586000001867241]</added-ids>
</result>
</response>
{
  "data": [
   {
     "code": "SUCCESS",
     "details": {
      "id": "1386586000002576001"
     },
     "message": "relation added",
     "status": "success"
   }
  ]
 }