mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-01-22 05:31:17 +02:00
983 B
983 B
sidebar_position |
---|
3 |
Pause advertising post
Pauses the display of the advertising post
Function PauseAdvertising(Val AccountID, Val AdID, Val Parameters = "") Export
Parameter | CLI option | Type | Description |
---|---|---|---|
AccountID | --cabinet | String, Number | Advertising account ID |
AdID | --adv | String, Number | Ad ID |
Parameters | --auth | Structure Of String | Authorization JSON or path to .json |
Returns: Map Of KeyAndValue - Serialized JSON response from VK
Parameters = GetVKParameters();
AccountID = "1607951446";
AdID = "0";
Result = OPI_VK.PauseAdvertising(AccountID, AdID, Parameters);
oint vk PauseAdvertising --cabinet "1607951446" --adv "0" --auth "GetVKParameters()"
{
"response": [
{
"id": 1029701085
}
]
}