Targeting Criteria
GET accounts/:account_id/targeting_criteria¶
Retrieve details for some or all of the targeting criteria associated with line items under the current account.
Resource URL¶
https://ads-api.x.com/12/accounts/:account_id/targeting_criteria
Parameters¶
Name | Description |
---|---|
account_id required |
The identifier for the leveraged account. Appears within the resource's path and is generally a required parameter for all Advertiser API requests excluding GET accounts. The specified account must be associated with the authenticated user. Type: string Example:
|
line_item_ids required |
Scope the response to just the targeting criteria under the specified line items by specifying a comma-separated list of identifiers. Up to 200 IDs may be provided. Type: string Example: |
count optional |
Specifies the number of records to try and retrieve per distinct request. Type: int Default:
200 Min, Max: 1 ,
1000 |
cursor optional |
Specifies a cursor to get the next page of results. See Pagination for more information. Type: string Example:
|
lang optional |
An ISO-639-1 language
code. When passed, an additional Type: string Example: |
sort_by optional |
Sorts by supported attribute in ascending or descending order. See Sorting for more information. Type: string Example:
|
targeting_criterion_ids optional |
Scope the response to just the desired targeting criteria by specifying a comma-separated list of identifiers. Up to 200 IDs may be provided. Type: string Example: |
with_deleted optional |
Include deleted results in your request. Type: boolean Default:
false Possible values: true ,
false |
with_total_count optional |
Include the Note: This parameter and
Note: Requests
which include Type: boolean Default:
false Possible values: true ,
false |
Example Request¶
GET https://ads-api.x.com/12/accounts/18ce54d4x5t/targeting_criteria?line_item_ids=8u94t
Example Response¶
{
"request": {
"params": {
"account_id": "18ce54d4x5t",
"line_item_ids": [
"8u94t"
]
}
},
"next_cursor": null,
"data": [
{
"line_item_id": "8u94t",
"name": "Custom audience targeting",
"id": "dpl3a6",
"operator_type": "EQ",
"created_at": "2017-05-26T03:29:35Z",
"targeting_value": "249yj",
"updated_at": "2017-05-26T03:29:35Z",
"deleted": false,
"targeting_type": "CUSTOM_AUDIENCE"
}
]
}
GET accounts/:account_id/targeting_criteria/:targeting_criterion_id¶
Retrieve a specific targeting criterion associated with the current account.
Resource URL¶
https://ads-api.x.com/12/accounts/:account_id/targeting_criteria/:targeting_criterion_id
Parameters¶
Name | Description |
---|---|
account_id required |
The identifier for the leveraged account. Appears within the resource's path and is generally a required parameter for all Advertiser API requests excluding GET accounts. The specified account must be associated with the authenticated user. Type: string Example:
|
targeting_criterion_id required |
A reference to the targeting criterion you are operating with in the request. Type: string Example:
|
lang optional |
An ISO-639-1 language
code. When passed, an additional Type: string Example: |
with_deleted optional |
Include deleted results in your request. Type: boolean Default:
false Possible values: true ,
false |
Example Request¶
GET https://ads-api.x.com/12/accounts/18ce54d4x5t/targeting_criteria/eijd4y
Example Response¶
{
"request": {
"params": {
"targeting_criterion_id": "eijd4y",
"account_id": "18ce54d4x5t"
}
},
"data": {
"line_item_id": "619jl",
"name": "🤖",
"id": "eijd4y",
"created_at": "2017-07-06T16:51:04Z",
"targeting_value": "🤖",
"updated_at": "2017-07-06T16:51:04Z",
"deleted": false,
"targeting_type": "BROAD_KEYWORD"
}
}
POST accounts/:account_id/targeting_criteria¶
See the Targeting
Options page to find targeting_value
s for specific
targeting types. We recommend that you refresh all data weekly, to
ensure that you are working with the latest set of targeting type
values. We change values and available targeting criteria from time to
time; while the majority of these don't change often, some do. There is
no guarantee that these values will not change.
Use the BROAD_KEYWORD
, EXACT_KEYWORD
,
PHRASE_KEYWORD
, or UNORDERED_KEYWORD
targeting
types with the keywords specified in the targeting_value
.
Exclude keywords by using the operator_type
request
parameter set to NE
. See targeting
keyword types for a detailed description of each type.
Note: It is only possible to target a single age bucket per line item.
Note: To target a Custom Audience, that audience
must be targetable. i.e., targerable
must equal
true
.
Note: When using targeting type
TV_SHOW
, there must be at least one LOCATION
targeting criterion on the line item prior to setting the
TV_SHOW
targeting and all LOCATION
must be
within the same locale as the TV_SHOW
being targeted.
Resource URL¶
https://ads-api.x.com/12/accounts/:account_id/targeting_criteria
Parameters¶
Name | Description |
---|---|
account_id required |
The identifier for the leveraged account. Appears within the resource's path and is generally a required parameter for all Advertiser API requests excluding GET accounts. The specified account must be associated with the authenticated user. Type: string Example:
|
line_item_id required |
A reference to the line item you are operating with in the request. Type: string Example: |
operator_type required |
Specify the relationship that the targeting criterion should
have. For example, to exclude keywords, use
Type: enum Possible values:
|
targeting_type required |
The type of targeting that will be applied to this line item. Possible non-keyword-based values include: Note: It is only possible
to target a single Possible
keyword-based values include: Possible custom audience values
include: Possible installed app store
category values: Possible Twitter
Audience Platform (TAP) app exclusion: |
targeting_value required |
Specify which user, which interest, which location, which event, which platform, which platform version, which device, which keyword or phrase, which gender, which custom audience, which app store category, or which exclusion of an app list this targeting will be applied to, depending on the selected targeting_type. Type: string Example: |
Example Request¶
POST https://ads-api.x.com/12/accounts/18ce54d4x5t/targeting_criteria?line_item_id=619jl&targeting_type=BROAD_KEYWORD&targeting_value=technology
Example Response¶
{
"data": {
"line_item_id": "619jl",
"name": "technology",
"id": "fbyjlr",
"created_at": "2017-09-06T07:31:21Z",
"targeting_value": "technology",
"updated_at": "2017-09-06T07:31:21Z",
"deleted": false,
"targeting_type": "BROAD_KEYWORD"
},
"request": {
"params": {
"line_item_id": "619jl",
"targeting_type": "BROAD_KEYWORD",
"targeting_value": "technology",
"account_id": "18ce54d4x5t"
}
}
}
POST batch/accounts/:account_id/targeting_criteria¶
Allows the batch creation of new Targeting Criteria with a single request.
Batch Requests
- The current maximum batch size is 500.
- All parameters are sent in the request body and a
Content-Type
ofapplication/json
is required. - Batch requests fail or succeed together as a group and all API responses for both error and success preserve the item order of the initial request.
Batch Responses
Batch API responses return an ordered collection of items. Otherwise, they are identical in structure to their corresponding single-item endpoints.
Batch Errors
- Request-level errors (eg. max batch size exceeded) are shown in the
response under the
errors
object. - Item-level errors (eg. missing required Targeting Criteria
parameter) are shown in the response under the
operation_errors
object.
Resource URL¶
https://ads-api.x.com/12/batch/accounts/:account_id/targeting_criteria
Parameters¶
Name | Description |
---|---|
operation_type required |
The per item operation type being performed. Type: enum Possible values: |
params required |
A JSON object containing all the parameters for the targeting criteria objects. For a list of required and optional targeting criteria parameters, see here. In
addition, this endpoint supports an |
Example Request¶
POST https://ads-api.x.com/12/batch/accounts/18ce54d4x5t/targeting_criteria
[
{
"operation_type":"Create",
"params":{
"line_item_id":"6f9an",
"targeting_type":"LOCATION",
"targeting_value":"5122804691e5fecc"
}
},
{
"operation_type":"Delete",
"params":{
"targeting_criterion_id":"al2rua"
}
}
]
Example Response¶
{
"data_type": "targeting_criterion",
"data": [
{
"line_item_id": "6f9an",
"name": "San Francisco-Oakland-San Jose CA, US",
"id": "al7vt2",
"location_type": "CITY",
"operator_type": "EQ",
"created_at": "2016-11-11T22:59:50Z",
"targeting_value": "5122804691e5fecc",
"updated_at": "2016-11-11T22:59:50Z",
"deleted": false,
"targeting_type": "LOCATION"
},
{
"line_item_id": "6keuo",
"name": "accounts",
"id": "al2rua",
"operator_type": "EQ",
"created_at": "2016-11-11T17:50:19Z",
"targeting_value": "accounts",
"updated_at": "2016-11-11T22:59:50Z",
"deleted": true,
"targeting_type": "BROAD_KEYWORD"
}
],
"request": [
{
"params": {
"line_item_id": "6f9an",
"targeting_type": "LOCATION",
"targeting_value": "5122804691e5fecc",
"account_id": "18ce54d4x5t"
},
"operation_type": "Create"
},
{
"params": {
"targeting_criterion_id": "al2rua",
"account_id": "18ce54d4x5t"
},
"operation_type": "Delete"
}
]
}
DELETE accounts/:account_id/targeting_criteria/:targeting_criterion_id¶
Delete the specified targeting criterion belonging to the current account.
Resource URL¶
https://ads-api.x.com/12/accounts/:account_id/targeting_criteria/:targeting_criterion_id
Parameters¶
Name | Description |
---|---|
account_id required |
The identifier for the leveraged account. Appears within the resource's path and is generally a required parameter for all Advertiser API requests excluding GET accounts. The specified account must be associated with the authenticated user. Type: string Example:
|
targeting_criterion_id required |
A reference to the targeting criterion you are operating with in the request. Type: string Example:
|
Example Request¶
DELETE https://ads-api.x.com/12/accounts/18ce54d4x5t/targeting_criteria/dpl3a6
Example Response¶
{
"data": {
"line_item_id": "8u94t",
"name": "Custom audience targeting",
"id": "dpl3a6",
"created_at": "2017-05-26T03:29:35Z",
"targeting_value": "249yj",
"updated_at": "2017-08-30T18:38:58Z",
"deleted": true,
"targeting_type": "CUSTOM_AUDIENCE"
},
"request": {
"params": {
"targeting_criterion_id": "dpl3a6",
"account_id": "18ce54d4x5t"
}
}
}