Delete
Deletes a retargeting condition.
Alert
Disabled method. Use version 5 of the API.
For information about the compatibility of methods between versions Live 4 and 5, see the Migration guide.
Input data
The input data structure in JSON is shown below.
{
"method": "RetargetingCondition",
"param": {
/* RetargetingConditionRequest */
"Action": (string),
"SelectionCriteria": {
/* RetargetingConditionSelectionCriteria */
"RetargetingConditionIDS": [
(int)
...
],
"Logins": [
(string)
...
]
}
}
}
Parameters are described below.
Parameter |
Description |
Required |
RetargetingConditionRequest object |
||
|
Action: Delete. |
Yes |
|
The |
Yes |
RetargetingConditionSelectionCriteria object |
||
|
Array containing the IDs of retargeting conditions to perform the operation for. |
No |
|
Array containing usernames of clients to perform the operation for. For direct advertisers, this parameter is ignored. |
No |
Notes |
||
Alert
|
Output data
Returns an empty structure:
{ }
Examples of input data
Python
{
'Action': 'Delete',
'SelectionCriteria': {
'Logins': ['agrom','larry']
}
}
PHP
array(
'Action' ='Delete',
'SelectionCriteria' =array(
'Logins' =array('agrom','larry')
)
)
Perl
{
'Action' ='Delete',
'SelectionCriteria' ={
'Logins' =['agrom','larry']
}
}