AI-generated Key Takeaways
- 
          Search and retrieve SearchAds360 fields that match a specific query using the provided endpoint. 
- 
          Requests can specify query parameters for filtering, pagination, and the number of results to return. 
- 
          Responses include a list of matching fields, pagination information, and the total number of results. 
- 
          Authorization requires the https://www.googleapis.com/auth/doubleclicksearchscope.
- 
          Potential errors include AuthenticationError, AuthorizationError, HeaderError, InternalError, QueryError, QuotaError, and RequestError. 
Returns all fields that match the search query.
List of thrown errors: AuthenticationError AuthorizationError HeaderError InternalError QueryError QuotaError RequestError
HTTP request
POST https://searchads360.googleapis.com/v0/searchAds360Fields:search
The URL uses gRPC Transcoding syntax.
Request body
The request body contains data with the following structure:
| JSON representation | 
|---|
| { "query": string, "pageToken": string, "pageSize": integer } | 
| Fields | |
|---|---|
| query | 
 Required. The query string. | 
| pageToken | 
 Token of the page to retrieve. If not specified, the first page of results will be returned. Use the value obtained from  | 
| pageSize | 
 Number of elements to retrieve in a single page. When too large a page is requested, the server may decide to further limit the number of returned resources. | 
Response body
Response message for SearchAds360FieldService.SearchSearchAds360Fields.
If successful, the response body contains data with the following structure:
| JSON representation | 
|---|
| {
  "results": [
    {
      object ( | 
| Fields | |
|---|---|
| results[] | 
 The list of fields that matched the query. | 
| nextPageToken | 
 Pagination token used to retrieve the next page of results. Pass the content of this string as the  | 
| totalResultsCount | 
 Total number of results that match the query ignoring the LIMIT clause. | 
Authorization scopes
Requires the following OAuth scope:
- https://www.googleapis.com/auth/doubleclicksearch
