- 1 Minute to read
DOOH Venue Types Targeting
- 1 Minute to read
This article describes resources that enable you to read and write DOOH Venue Types targeting.
Overview
You can target DOOH lines (Display or Video) using a list of DOOH Venue Types. To learn more, refer to Digital Out Of Home (DOOH).
Endpoint
/traffic/lines/{id}/targetingA
GETrequest enables you to view DOOH Venue Types targeted by the specified line.A
POSTrequest enables you to target DOOH Venue Types with the specified line.
Resources
The targeting resource is the standard Yahoo DSP resource for targeting consumers based on their profiles, behaviors, and ad content.
The targeting resource is defined by the following DOOH_VENUE_TYPES targeting type-specific fields:
Parameter | Parameter Type | Description | Data Type | Required |
|---|---|---|---|---|
| path | Specifies the line ID. |
| Y |
| body | Specifies the IDs of the DOOH venue types targeted. |
| Y |
| body | Specifies an array of targeting types to update, enable, or disable.
To learn more, refer to Targeting Types. |
| Y |
Note
For a complete list of
targetingresource fields, refer to Targeting Object.
Add/Update DOOH Venue Types Targeting
Add or update DOOH venue types targeting for the specified line.
POST traffic/lines/{id}/targetingParameters
The line ID is specified in the path of the URL. All other parameters are specified in the body of the application/json payload.
Example Request URL
POST https://dspapi.admanagerplus.yahoo.com/traffic/lines/2146923/targetingExample Request Body
{
"doohVenueTypes": [
101
],
"types": [
{
"name": "DOOH_VENUE_TYPE",
"isTargeted": true
}
]
}Example Response
{
"response": {
"types": [
{
"name": "DOOH_VENUE_TYPE",
"isTargeted": true
}
],
"doohVenueTypes": [
{
"id": 101,
"label": "Airports"
}
],
}
"errors": null,
"timeStamp": "2022-08-28T09:01:25.112Z"
}Read DOOH Venue Types Targeting
Reads DOOH venue types targeting for the specified line.
GET traffic/lines/{id}/targetingParameters
The line ID is specified in the path of the URL.
Example Request URL
GET https://dspapi.admanagerplus.yahoo.com/traffic/lines/2146923/targetingExample Response
{
"response": {
"types": [
{
"name": "DOOH_VENUE_TYPE",
"isTargeted": true
}
],
"doohVenueTypes": [
{
"id": 101,
"label": "Airports"
}
],
}
"errors": null,
"timeStamp": "2022-08-28T09:01:25.112Z"
}