ADO.NET Provider for LinkedIn Marketing Solutions

Build 25.0.9434

ThirdPartyTracking

Use thirdPartyTrackingTags to retrieve a previously created third-party tracking tag.

Table Specific Information

Select

The Forms view returns a list of the Third-party tracking tags through the ad creative they're associated with. The following request takes in an ad creative URN in the creative parameter to search for third-party tracking tags linked to that ad creative.

The provider uses the LinkedIn Marketing Solutions API to process search criteria that refer to the Status column. The provider processes other filters client-side within the provider. For example, the following queries are processed server side.

SELECT * FROM ThirdPartyTracking WHERE Creative = '123456'

Insert

To create a new third-party tracking tag there are some fields that are required in initial creation which are: Creative, Event, Platform, TrackingUrl.

    INSERT INTO ThirdPartyTracking ( Creative, Event, Platform, TrackingUrl ) VALUES ( 'urn:li:sponsoredCreative:722479053', 'IMPRESSION', 'DOUBLECLICK', 'https://serverside.doubleclick.net/ddm/trackimp/N8480.281152LINKEDINUS/B20690748.213458830;dc_trk_aid=512607074;dc_trk_cid=107409144;ord=[timestamp];dc_lat=;dc_rdid=;tag_for_child_directed_treatment=?' );

Delete

To remove a third-party tracking tag from a creative, use a DELETE statement. Note that the Id column is required in the WHERE clause.

DELETE FROM ThirdPartyTracking WHERE Id = '722492693';

Columns

Name Type ReadOnly References Description
Id [KEY] String True

The campaign to which this recommendation belongs.

Creative String False

The campaign to which this recommendation belongs.

Account String True

The average spend of the entity.

Event String False

The currency code of the average spend.

The allowed values are IMPRESSION, CLICK.

Platform String False

A prediction of how much additional impressions could be generated from a different bid.

The allowed values are DOUBLECLICK.

TrackingUrl String False

The currency code of additional impressions.

Created Timestamp True

A prediction of how much additional impressions could be generated from a different bid.

LastModified Timestamp True

Date at which the ad entity's TotalBudget will be exhausted, in Unix Epoch time.

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 25.0.9434