add
Creates retargeting lists.
Learn more
Restrictions
Maximum of 2,000 retargeting lists per advertiser.
Maximum of 1000 retargeting lists per method call.
Request
Request structure in JSON format:
{
"method": "add",
"params": { /* params */
"RetargetingLists": [{ /* RetargetingListAddItem */
"Type": ( RETARGETING | AUDIENCE ),
"Name": (string), /* required */
"Description": (string),
"Rules": [{ /* RetargetingListRuleItem */
"Arguments": [{ /* RetargetingListRuleArgumentItem */
"MembershipLifeSpan": (int),
"ExternalId": (long) /* required */
}, ... ], /* required */
"Operator": ( "ALL" | "ANY" | "NONE" ) /* required */
}, ... ] /* required */
}, ... ] /* required */
}
}
Parameter |
Type |
Description |
Required |
params structure (for JSON) / AddRequest structure (for SOAP) |
|||
|
array of RetargetingListAddItem |
Retargeting lists to add. |
Yes |
RetargetingListAddItem structure |
|||
|
RetargetingListTypeEnum |
Type of retargeting list. See the section Type of retargeting lists. The default value is RETARGETING. |
No |
|
string |
Name of the retargeting list (maximum of 250 characters). |
Yes |
|
string |
Text note for the retargeting list (maximum of 4096 characters). |
No |
|
array of RetargetingListRuleItem |
Rules for selecting site users. In order for the retargeting list to apply, the user must meet all the rules at once. |
Yes |
RetargetingListRuleItem structure |
|||
|
array of RetargetingListRuleArgumentItem |
Goals and segments. See the section Goals and segments. |
Yes |
|
RetargetingListRuleOperatorEnum |
Logical operator for the retargeting list:
|
Yes |
RetargetingListRuleArgumentItem structure |
|||
|
int |
The number of days (from 1 to 540) for checking for a goal conversion. For Yandex Metrica and Yandex Audience segments, this parameter is not used and the passed value is ignored. |
For Yandex Metrica goals |
|
long |
ID of the goal or segment. For segments by user interestsuser interests, use identifier prefixes to specify interest types:
For example, the segment ID |
Yes |
Response
Response structure in JSON format:
{
"result": { /* result */
"AddResults": [{ /* ActionResult */
"Id": (long),
"Warnings": [{ /* ExceptionNotification */
"Code": (int), /* required */
"Message": (string), /* required */
"Details": (string)
}, ... ],
"Errors": [{ /* ExceptionNotification */
"Code": (int), /* required */
"Message": (string), /* required */
"Details": (string)
}, ... ]
}, ... ]
}
}
Parameter |
Type |
Description |
result structure (for JSON) / AddResponse structure (for SOAP) |
||
|
array of ActionResult |
Results of adding retargeting lists. |
ActionResult structure |
||
|
long |
ID of the created retargeting list. Returned if there aren't any errors. See the section Operations on object arrays. |
|
array of ExceptionNotification |
Warnings that occurred during the operation. |
|
array of ExceptionNotification |
Errors that occurred during the operation. |