I'm using javascript to generate click trags via the cm360 api however the placementTags object that is returned only has placementID and no tagDatas, as seen below:
placementTags: [ { placementId: <PLACEMENT ID> } ]
My request is structured like this:
dfareporting.placements.generatetags({ profileId: profileID, body: {}, placementIds: [<PLACEMENT_ID>], campaignId: <CAMPAIGNID>, tagFormats: ["PLACEMENT_TAG_STANDARD"] });
My placement was constructed with the below resource with no errors returned:
{
"kind": "dfareporting#placement",
"campaignId": "<CAMPAIGN ID>",
"name": "<PLACEMENT NAME>",
"directorySiteId": "<SITE ID>",
"paymentSource": "PLACEMENT_AGENCY_PAID",
"compatibility": "DISPLAY",
"tagSettings": {
"includeClickTracking": true,
"includeClickThroughUrls": true
},
"size": {
"width": 1,
"height": 1,
"kind": "dfareporting#size"
},
"pricingSchedule": {
"startDate": "<THE CURRENT DATE>",
"endDate": "2030-01-01",
"pricingType": "PRICING_TYPE_CPM"
},
"tagFormats": "PLACEMENT_TAG_STANDARD"
}`;
How can I ensure that tagDatas is returned?
Many thanks,