delinkメソッド - 比較
目的
データの関連付けを解除します。
リクエストURL
バージョン1.0:
https://crm.zoho.com/crm/private/xml/<Module>/delink?id=<Record ID>&authtoken=AuthToken&scope=crmapi&relatedId=<Related Record ID>&relatedModule=<Related-Module>
バージョン2.0:
URL: https://www.zohoapis.com/crm/v2/{module_api_name}/{record_id}/{related_list_api_name}/{related_record_id}
メソッド:DELETE
ヘッダー:Authorization=Zoho-oauthtoken {oauth_token}
例:https://www.zohoapis.com/crm/v2/Campaigns/1386586000000803001/Contacts/1386586000000599023
注:
- 関連リストのAPI名は、次のAPI(GET)を使って確認できます - https://www.zohoapis.com/crm/v2/settings/related_lists?module={module_api_name}
リクエストパラメーター
バージョン1.0 | バージョン2.0 |
---|---|
authtoken=**** | Authorization=Zoho-oauthtoken ***** - ヘッダー |
scope=crmapi | N/A |
id | リクエストURL内で指定してください。 |
relatedId | リクエストURL内で指定してください。 |
relatedModule | リクエストURL内で指定してください。 |
レスポンス例:
バージョン1.0のレスポンス | バージョン2.0のレスポンス |
---|---|
<?xml version="1.0" encoding="UTF-8" ?> <response uri="/crm/private/xml/Campaigns/delink"> <result> <code>5000</code> <message>Record Id(s) : 1386586000000599023,Record(s) deleted successfully</message> </result> </response> | { "data": [ { "code": "SUCCESS", "details": { "id": "1386586000000599023" }, "message": "relation removed", "status": "success", } ] } |