移除链接

商家可以随时访问 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"
}