Campaign Manager 360 API . dynamicTargetingKeys

Instance Methods

close()

Close httplib2 connections.

delete(profileId, objectId, name, objectType, x__xgafv=None)

Deletes an existing dynamic targeting key.

insert(profileId, body=None, x__xgafv=None)

Inserts a new dynamic targeting key. Keys must be created at the advertiser level before being assigned to the advertiser's ads, creatives, or placements. There is a maximum of 1000 keys per advertiser, out of which a maximum of 20 keys can be assigned per ad, creative, or placement.

list(profileId, advertiserId=None, names=None, objectId=None, objectType=None, x__xgafv=None)

Retrieves a list of dynamic targeting keys.

Method Details

close()
Close httplib2 connections.
delete(profileId, objectId, name, objectType, x__xgafv=None)
Deletes an existing dynamic targeting key.

Args:
  profileId: string, User profile ID associated with this request. (required)
  objectId: string, ID of the object of this dynamic targeting key. This is a required field. (required)
  name: string, Required. Name of this dynamic targeting key. This is a required field. Must be less than 256 characters long and cannot contain commas. All characters are converted to lowercase. (required)
  objectType: string, Required. Type of the object of this dynamic targeting key. This is a required field. (required)
    Allowed values
      OBJECT_ADVERTISER - 
      OBJECT_AD - 
      OBJECT_CREATIVE - 
      OBJECT_PLACEMENT - 
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format
insert(profileId, body=None, x__xgafv=None)
Inserts a new dynamic targeting key. Keys must be created at the advertiser level before being assigned to the advertiser's ads, creatives, or placements. There is a maximum of 1000 keys per advertiser, out of which a maximum of 20 keys can be assigned per ad, creative, or placement.

Args:
  profileId: string, User profile ID associated with this request. (required)
  body: object, The request body.
    The object takes the form of:

{ # Contains properties of a dynamic targeting key. Dynamic targeting keys are unique, user-friendly labels, created at the advertiser level in DCM, that can be assigned to ads, creatives, and placements and used for targeting with Studio dynamic creatives. Use these labels instead of numeric Campaign Manager IDs (such as placement IDs) to save time and avoid errors in your dynamic feeds.
  "kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "dfareporting#dynamicTargetingKey".
  "name": "A String", # Name of this dynamic targeting key. This is a required field. Must be less than 256 characters long and cannot contain commas. All characters are converted to lowercase.
  "objectId": "A String", # ID of the object of this dynamic targeting key. This is a required field.
  "objectType": "A String", # Type of the object of this dynamic targeting key. This is a required field.
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Contains properties of a dynamic targeting key. Dynamic targeting keys are unique, user-friendly labels, created at the advertiser level in DCM, that can be assigned to ads, creatives, and placements and used for targeting with Studio dynamic creatives. Use these labels instead of numeric Campaign Manager IDs (such as placement IDs) to save time and avoid errors in your dynamic feeds.
  "kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "dfareporting#dynamicTargetingKey".
  "name": "A String", # Name of this dynamic targeting key. This is a required field. Must be less than 256 characters long and cannot contain commas. All characters are converted to lowercase.
  "objectId": "A String", # ID of the object of this dynamic targeting key. This is a required field.
  "objectType": "A String", # Type of the object of this dynamic targeting key. This is a required field.
}
list(profileId, advertiserId=None, names=None, objectId=None, objectType=None, x__xgafv=None)
Retrieves a list of dynamic targeting keys.

Args:
  profileId: string, User profile ID associated with this request. (required)
  advertiserId: string, Select only dynamic targeting keys whose object has this advertiser ID.
  names: string, Select only dynamic targeting keys exactly matching these names. (repeated)
  objectId: string, Select only dynamic targeting keys with this object ID.
  objectType: string, Select only dynamic targeting keys with this object type.
    Allowed values
      OBJECT_ADVERTISER - 
      OBJECT_AD - 
      OBJECT_CREATIVE - 
      OBJECT_PLACEMENT - 
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Dynamic Targeting Key List Response
  "dynamicTargetingKeys": [ # Dynamic targeting key collection.
    { # Contains properties of a dynamic targeting key. Dynamic targeting keys are unique, user-friendly labels, created at the advertiser level in DCM, that can be assigned to ads, creatives, and placements and used for targeting with Studio dynamic creatives. Use these labels instead of numeric Campaign Manager IDs (such as placement IDs) to save time and avoid errors in your dynamic feeds.
      "kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "dfareporting#dynamicTargetingKey".
      "name": "A String", # Name of this dynamic targeting key. This is a required field. Must be less than 256 characters long and cannot contain commas. All characters are converted to lowercase.
      "objectId": "A String", # ID of the object of this dynamic targeting key. This is a required field.
      "objectType": "A String", # Type of the object of this dynamic targeting key. This is a required field.
    },
  ],
  "kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "dfareporting#dynamicTargetingKeysListResponse".
}