Google Business Performance API에는 단일 API 요청으로 여러 'DailyMetrics'를 가져올 수 있는
새로운 API 메서드가 있습니다.
v4 reportInsights API 메서드에서 Google Business Profile Performance API로 이전하려면
지원 중단 일정 및 안내를 검토하세요.
계정 및 위치의 관리자 관리
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
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"
}
위치 관리자로 위치 그룹 초대
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}
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-05-08(UTC)
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-05-08(UTC)"],[[["The My Business Account Management API uses the term \"admins\" to refer to managers of business accounts and locations, providing tools to manage accounts, locations, and listing details."],["Admins can be managed through dedicated collections and resource paths, allowing for operations like listing, adding, and removing admins for specific accounts or locations."],["API endpoints facilitate listing existing admins, inviting new admins (users or LocationGroups) by associating their email with a Google Account, and removing admin access."],["Admins can be assigned roles and permissions using the API, ensuring appropriate levels of access for managing business accounts and locations."],["All admin management operations, including adding, listing, and removing, are performed using standard HTTP methods (GET, POST, DELETE) against specific API endpoints."]]],[]]