在 My Business Account Management API 中,商家帳戶和地點的管理員是 亦稱為「管理員」。進一步瞭解管理員如何管理帳戶 和營業地點,請參閱商家檔案帳戶和地區群組,以及 管理商家資訊詳細資料。
帳戶和地點的管理員是以下列集合表示:
管理員專用的資源路徑如下:
accounts/{accountId}/admins/{adminId} locations/{locationId}/admins/{adminId}您可以執行下列作業:
列出帳戶或地點的管理員
列出指定帳戶或位置的管理員。
列出帳戶管理員
GET https://mybusiness.googleapis.com/v1/accounts/{accountId}/admins
如要列出營業地點管理員
GET https://mybusinessaccountmanagement.googleapis.com/v1/locations/{locationId}/admins
為帳戶或位置新增管理員
邀請他人成為帳戶或地點的管理員。您必須 將邀請對象的電子郵件地址與 Google 帳戶建立關聯。當 受邀者使用 Google 帳戶登入商家檔案時, 收到使用者同意條款及細則後,才能進行變更。
邀請使用者擔任帳戶管理員
POST https://mybusinessaccountmanagement.googleapis.com/v1/accounts/{accountId}/admins
邀請使用者成為營業地點管理員
POST https://mybusinessaccountmanagement.googleapis.com/v1/locations/{locationId}/admins { "role": "MANAGER", "adminName": "example@example.com" }
如要邀請 LocationGroup 成為營業地點管理員
POST https://mybusinessaccountmanagement.googleapis.com/v1/locations/{locationId}/admins { "account": "LocationGroupID", "role": "MANAGER" }
移除帳戶或地點的管理員
移除指定帳戶或位置的管理員。
移除帳戶管理員
DELETE https://mybusinessaccountmanagement.googleapis.com/v1/accounts/{accountId}/admins/{adminId}
如何移除營業地點管理員
DELETE https://mybusinessaccountmanagement.googleapis.com/v1/accounts/locations/{locationId}/admins/{adminId}