リクエストを行うhttps://mybusiness.googleapis.com/v3/accounts
と、アカウントのリストが表示されます。これらのアカウントには、name というフィールドがあります。そのフィールドは accounts/account_name です。
{
"state": {
"status": "UNVERIFIED"
},
"type": "PERSONAL",
"name": "accounts/1337",
"accountName": "example"
}
リクエストを行うhttps://mybusiness.googleapis.com/v3/accounts/account_name/locations
と、場所のリストが表示されます。これらの場所には、name というフィールドがあります。そのフィールドは accounts/account_name/locations/location_name です。
{
"locations": [
{
"languageCode": "en",
"openInfo": {
"status": "OPEN",
"canReopen": true
},
"name": "accounts/1337/locations/13161337",
...
}