비즈니스 프로필 연결

판매자 센터에 오프라인 판매점 인벤토리를 제공하려면 먼저 비즈니스를 관리할 수 있습니다 배포 사양에서 Content API를 통해 비즈니스 프로필에서 가능한 비즈니스 위치 그룹을 생성할 수 있지만 먼저 비즈니스 프로필에 대한 액세스 권한을 요청하세요.

비즈니스 프로필에 대한 액세스 권한 요청

비즈니스 프로필에 대한 액세스 권한을 요청하려면 liasettings.requestgmbaccess 드림 메서드를 사용하여 축소하도록 요청합니다.

POST https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890/requestgmbaccess?gmbEmail=admin@example.com

이 예시에 표시된 것처럼 gmbEmail 쿼리 매개변수는 비즈니스 프로필 관리자의 주소입니다.

이 메서드를 호출하면 지정된 관리자에게 이메일이 전송됩니다. 액세스 요청을 수락 또는 거부하도록 요청할 수 있습니다. 이 요청은 다음 날짜 이후에 만료됩니다. 관리자가 조치를 취하지 않으면 7일이 걸립니다.

사용 가능한 비즈니스 위치 그룹 나열

액세스가 허용되면 호출 liasettings.getaccessiblegmbaccounts 드림 메서드를 사용하여 축소하도록 요청합니다.

GET https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890/accessiblegmbaccounts

Response:
200 OK
{
  "kind": "content#liasettingsGetAccessibleGmbAccountsResponse",
  "accountId": 67890,
  "gmbAccounts": [{
    "type" : "user",
    "email" : "admin@example.com",
    "name" : "admin@example.com",
    "listingCount": 82
  },
  {
    "type" : "business",
    "email" : "california@example.com",
    "name" : "Golden-State",
    "listingCount" : 20
  },
  {
    "type" : "business",
    "email" : "florida@example.com",
    "name" : "Sunshine-State",
    "listingCount" : 15
  },
  {
    "type" : "business",
    "email" : "newyork@example.com",
    "name" : "Empire-State",
    "listingCount" : 25
  }]
}

판매자 센터 계정의 비즈니스 위치 그룹을 지정하세요.

이제 가능한 비즈니스 위치 그룹 목록이 생겼으므로 googleMyBusinessLink 필드 연결된 리소스 Accounts개 판매자 센터 계정을 원하는 계정으로 연결합니다 예를 들어 판매자가 Center 67890에는 캘리포니아에 소재한 기업을 위한 제품이 포함됩니다. Accounts.update: 있습니다.

PUT https://shoppingcontent.googleapis.com/content/v2/12345/accounts/67890
{
  "googleMyBusinessLink" : {
    "gmbEmail": "california@example.com"
  }
}

Response:
200 OK
{
  "kind": "content#account",
  "id": 67890,
  "googleMyBusinessLink" : {
    "gmbEmail": "california@example.com",
    "status" : "active"
  }
}

googleMyBusinessLink 필드를 설정하면 수동 작업이 필요하지 않습니다. 링크 상태가 즉시 반영됩니다.

제품 및 인벤토리 데이터 제출

이제 판매자 센터가 비즈니스 위치 그룹과 연결되었으므로 다음 작업을 수행할 수 있습니다. 이러한 비즈니스에 오프라인 제품 및 오프라인 제품 인벤토리 데이터를 제공합니다. 이를 위해 다음과 같은 동일한 메서드를 사용합니다. products.insert 온라인 제품 및 인벤토리 데이터를 업로드하는 데 사용할 수 있습니다. products.insert의 경우 online 대신 local 채널을 지정합니다.