移除链接

商家可以随时访问 Google Merchant Center 中的合作伙伴标签页,解除关联。合作伙伴可以使用 accounts.link 方法的 remove 操作以程序化方式移除链接。关联一经移除,便会消失,您必须重新提出关联请求并重新获得批准。

就像 approve 操作可以选择性地选择要启用的 services 一样,remove 操作也可以对 services 列表的一部分执行操作。

示例

继续使用前面部分的示例,商家账号 98765 可以通过发送指定 "action": "remove" 的请求来解除与合作伙伴 123456789 的关联。

POST https://shoppingcontent.googleapis.com/content/v2.1/98765/accounts/98765/link
{
  "linkedAccountId": "123456789",
  "linkType": "eCommercePlatform",
  "services": ["shoppingAdsProductManagement"],
  "action": "remove"
}