Skip to main content

Pause advertising post

Pauses the display of the advertising post

Function PauseAdvertising(Val AccountID, Val AdID, Val Parameters = "") Export

ParameterCLI optionTypeDescription
AccountID--cabinetString, NumberAdvertising account ID
AdID--advString, NumberAd ID
Parameters--authStructure Of StringAuthorization JSON or path to .json

Returns: Map Of KeyAndValue - Serialized JSON response from VK


Code example
    Parameters = GetVKParameters();

AccountID = "1607951446";
AdID = "0";

Result = OPI_VK.PauseAdvertising(AccountID, AdID, Parameters);
CLI command example
    
oint vk PauseAdvertising --cabinet "1607951446" --adv "0" --auth "GetVKParameters()"

Result
{
"response": [
{
"id": 1029701085
}
]
}