Required. Identifies the type of assigned targeting options to list.
Supported targeting types include:
TARGETING_TYPE_AGE_RANGE
TARGETING_TYPE_APP
TARGETING_TYPE_APP_CATEGORY
TARGETING_TYPE_AUDIENCE_GROUP
TARGETING_TYPE_CATEGORY
TARGETING_TYPE_GENDER
TARGETING_TYPE_HOUSEHOLD_INCOME
TARGETING_TYPE_KEYWORD
TARGETING_TYPE_PARENTAL_STATUS
TARGETING_TYPE_SESSION_POSITION
TARGETING_TYPE_URL
TARGETING_TYPE_YOUTUBE_CHANNEL
TARGETING_TYPE_YOUTUBE_VIDEO
Query parameters
Parameters
pageSize
integer
Optional. Requested page size. Must be between 1 and 5000. If unspecified will default to 100. Returns error code INVALID_ARGUMENT if an invalid value is specified.
pageToken
string
Optional. A token identifying a page of results the server should return. Typically, this is the value of nextPageToken returned from the previous call to assignedTargetingOptions.list method. If not specified, the first page of results will be returned.
orderBy
string
Optional. Field by which to sort the list. Acceptable values are:
assignedTargetingOptionId (default)
The default sorting order is ascending. To specify descending order for a field, a suffix "desc" should be added to the field name. Example: assignedTargetingOptionId desc.
filter
string
Optional. Allows filtering by assigned targeting option fields.
Supported syntax:
Filter expressions are made up of one or more restrictions.
Restrictions can be combined by the logical operator OR.
A restriction has the form of {field} {operator} {value}.
All fields must use the EQUALS (=) operator.
Supported fields:
assignedTargetingOptionId
Examples:
AssignedTargetingOption resources with ID 1 or 2: assignedTargetingOptionId="1" OR assignedTargetingOptionId="2"
The length of this field should be no more than 500 characters.
A token identifying the next page of results. This value should be specified as the pageToken in a subsequent ListAdGroupAssignedTargetingOptionsRequest to fetch the next page of results. This token will be absent if there are no more AssignedTargetingOption resources to return.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-02 UTC."],[[["Lists targeting options specifically assigned to an ad group, excluding inherited ones."],["Sends an HTTP GET request to a specified endpoint with parameters for advertiser ID, ad group ID, and targeting type."],["Allows filtering and sorting of results through query parameters like page size, page token, order by, and filter."],["Returns a response containing a list of assigned targeting options and a token for fetching subsequent pages."],["Requires authorization with the `https://www.googleapis.com/auth/display-video` scope."]]],["This outlines how to list targeting options assigned to an ad group via a `GET` request to a specific URL. Key actions include specifying the `advertiserId`, `adGroupId`, and `targetingType` as path parameters, alongside optional query parameters like `pageSize`, `pageToken`, `orderBy`, and `filter`. The response body contains an array of `assignedTargetingOptions` and a `nextPageToken` for pagination. The request body must be empty. This method also needs the `https://www.googleapis.com/auth/display-video` OAuth scope.\n"]]