Method: googleAdsFields.search

Returns all fields that match the search query.

List of thrown errors: AuthenticationError AuthorizationError HeaderError InternalError QueryError QuotaError RequestError

HTTP request

POST https://googleads.googleapis.com/v14/googleAdsFields: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

string

Required. The query string.

pageToken

string

Token of the page to retrieve. If not specified, the first page of results will be returned. Use the value obtained from nextPageToken in the previous response in order to request the next page of results.

pageSize

integer

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 GoogleAdsFieldService.SearchGoogleAdsFields.

If successful, the response body contains data with the following structure:

JSON representation
{
  "results": [
    {
      object (GoogleAdsField)
    }
  ],
  "nextPageToken": string,
  "totalResultsCount": string
}
Fields
results[]

object (GoogleAdsField)

The list of fields that matched the query.

nextPageToken

string

Pagination token used to retrieve the next page of results. Pass the content of this string as the pageToken attribute of the next request. nextPageToken is not returned for the last page.

totalResultsCount

string (int64 format)

Total number of results that match the query ignoring the LIMIT clause.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/adwords

For more information, see the OAuth 2.0 Overview.