We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To whom this will concern,
I am having trouble bulk creating and assigning impression trackers as 1x1 pixels. I have included an example of the code I have written below:
function _createOneTrackingCreative(ss, singleTrackingCreativeArray){ var profileID = _fetchProfileId(); var advertiserId = singleTrackingCreativeArray[0]; var campaignId = singleTrackingCreativeArray [1] var name = singleTrackingCreativeArray[2]; var width = singleTrackingCreativeArray[3]; var height = singleTrackingCreativeArray[4]; var creativeType = singleTrackingCreativeArray[5]; var creativeResource = { "name": name, "advertiserId": advertiserId, "campaignId" : campaignId, "size": { "width": width, "height": height }, "active": true, "type": creativeType, } for (var i = 1; i < values.length; i++) { // exclude header row var newCreative = _createOneTrackingCreative(ss, values[i]); var rowNum = i+1; sheet.getRange('H' + rowNum) .setValue(newCreative.id) .setBackground('lightgray'); var newTrackingCreative = DoubleClickCampaigns.Creatives .insert(TrackingcreativeResource, profileID); return newTrackingCreative; } };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To whom this will concern,
I am having trouble bulk creating and assigning impression trackers as 1x1 pixels. I have included an example of the code I have written below:
The text was updated successfully, but these errors were encountered: