Resume
Resumes impressions for keywords. The keywords may be for different campaigns or ad groups.
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.
Restrictions
Alert
This method only supports campaigns with the “Text & Image Ads” type. To manage keywords in all types of campaigns, use the Keywords service in version 5 of the API.
Input data
The input data structure in JSON is shown below.
{
"method": "Keyword",
"param": {
/* KeywordRequest */
"Action": (string),
"Login": (string),
"KeywordIDS": [
(long)
...
]
}
}
Parameters are described below.
Parameter |
Description |
Required |
KeywordRequest object |
||
|
Action: Resume. |
Yes |
|
The username of the client to perform the operation for. A direct advertiser can optionally specify the username of a chief representativechief representative. |
For agencies |
|
Array of keywords IDs (maximum 10,000). |
Yes |
Output data
Note
The output data structure in JSON is shown below.
{
"data": {
/* KeywordResponse */
"ActionsResult": [
{ /* KeywordActionResult */
"Warnings": [
{ /* Warning */
"WarningCode": (int),
"WarningString": (string),
"Description": (string)
}
...
],
"Errors": [
{ /* Error */
"FaultCode": (int),
"FaultString": (string),
"FaultDetail": (string)
}
...
],
"KeywordID": (long)
}
...
]
}
}
Parameters are described below.
Parameter |
Description |
KeywordResponse object |
|
|
Array of
|
KeywordActionResult object |
|
|
Array of |
|
Array of |
|
Keyword ID. |
Warning object |
|
|
|
|
Warning text. |
|
Contains an empty structure. |
Error object |
|
|
Error code. |
|
Textual message about the error. |
|
Detailed description of the reason for the error. |
Examples of input data
Python
{
'Action': 'Resume',
'Login': 'agrom',
'KeywordIDS': [199381759,199482870,200725193]
}
PHP
array(
'Action' ='Resume',
'Login' ='agrom',
'KeywordIDS' =array(199381759,199482870,200725193)
)
Perl
{
'Action' ='Resume',
'Login' ='agrom',
'KeywordIDS' =[199381759,199482870,200725193]
}