在 Merchant API 中,帳戶可以與其他帳戶建立子帳戶關係。你可以使用 Merchant Accounts API,在進階帳戶下建立新的子帳戶。您必須擁有現有的進階帳戶才能撥打這通電話。您無法使用 Merchant API 將現有的獨立商家帳戶移至帳戶。
第三方供應商可以使用 Merchant Accounts API 開發介面,讓商家建立及管理帳戶詳細資料。
建立子帳戶
如要在進階帳戶下建立新的子帳戶,請呼叫 accounts.createAndConfigure
:
- 在「
account
」欄位中提供子帳戶的詳細資料。 - 在
users
欄位中指定任何新授權使用者。使用者存取權也會從上層帳戶繼承。 在
service
欄位中指定accountAggregation
。以下範例說明如何在帳戶
account/123
下方建立子帳戶,該帳戶是子帳戶的匯集器:POST https://merchantapi.googleapis.com/accounts/v1beta/accounts:createAndConfigure { "account": { "accountName": "merchantStore", "adultContent": false, "testAccount": false, "timeZone": { "id": "America/New_York", } "languageCode": "en-US", }, "service": [ { "accountAggregation": {}, "provider": "accounts/123" } ] }
接受《服務條款》
子帳戶會繼承上層帳戶簽署的 Merchant Center《服務條款》(TOS)。
更新商家資訊
您可以使用 Merchant Accounts API 編輯商家資訊。
- 如要查看商家資訊,請撥打
accounts.getBusinessInfo
。 - 如要編輯商家資訊,請撥打
accounts.updateBusinessInfo
。