GetCampaignsTags (Live)
Returns a list of tags for the specified campaign or multiple campaigns.
Input data
The input data structure in JSON is shown below.
{
"method": "GetCampaignsTags",
"param": {
/* CampaignIDSInfo */
"CampaignIDS": [
(int)
...
]
}
}
Parameters are described below.
Parameter |
Description |
Required |
CampaignIDSInfo object |
||
|
Array with IDs of campaigns to get tags for. |
Yes |
Output data
The method returns an array of CampaignTagsInfo
objects. Each object contains tags for a single campaign that was specified in the call.
{
"data": [
{ /* CampaignTagsInfo */
"CampaignID": (int),
"Tags": [
{ /* TagInfo */
"TagID": (int),
"Tag": (string)
}
...
]
}
...
]
}
Parameters are described below.
Parameter |
Description |
CampaignTagsInfo object |
|
|
The campaign ID. |
|
Array of |
TagInfo object |
|
|
Unique tag ID. |
|
Textual tag. |
Examples of input data
Python
{
'CampaignIDS': [3193279, 1634563]
}
PHP
array(
'CampaignIDS' => array(3193279, 1634563)
)
Perl
{
'CampaignIDS' => [3193279, 1634563]
}
Was the article helpful?
Previous