Mutate, Search, SearchStream은 Google Ads API에서 가장 일반적인 메서드
이지만 특정 용도로 사용되는 다른 메서드도 많습니다. 모든 서비스와
해당 API는
참고 문서에 설명되어 있습니다.
프로토콜 버퍼 RPC-REST 매핑
모든 서비스 엔드포인트 (REST 및 gRPC 사용 여부와 관계없이)는 궁극적으로
서비스 패키지의
.proto 파일에
proto3 인터페이스 정의 언어를
사용하여정의됩니다.
예: ListAccessibleCustomers
예를 들어 customer_service.proto 파일
은 표준 Mutate
외에 ListAccessibleCustomers 메서드를 정의합니다. google.api.http 주석은 메서드가 HTTP에 매핑되는 방식을 설명합니다. 커스텀 동사 listAccessibleCustomers와 함께 HTTP GET을 사용합니다.
[[["이해하기 쉬움","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"]],["최종 업데이트: 2026-08-03(UTC)"],[],["The Google Ads API includes various methods beyond `Mutate`, `Search`, and `SearchStream`, all detailed in REST documentation. Service endpoints are defined in `.proto` files using proto3. `ListAccessibleCustomers` is a GET method, mapped using the `google.api.http` annotation in the `customer_service.proto` file, and uses custom verb `listAccessibleCustomers`. Similarly, `CreateCustomerClient`, a POST method, uses custom verb `createCustomerClient`, also defined in the same file.\n"]]