2024-06-23 22:22:01 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 3
|
|
|
|
---
|
|
|
|
|
|
|
|
# Pause advertising post
|
|
|
|
Pauses the display of the advertising post
|
|
|
|
|
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
`Function PauseAdvertising(Val AccountID, Val AdID, Val Parameters = "") Export`
|
2024-06-23 22:22:01 +02:00
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Destination |
|
|
|
|
|-|-|-|-|
|
|
|
|
| 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
|
|
|
|
|
2024-07-10 13:05:58 +02:00
|
|
|
<br/>
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2024-06-23 22:22:01 +02:00
|
|
|
```bsl title="Code example"
|
|
|
|
|
|
|
|
Response = OPI_VK.PauseAdvertising(1234567890, 1029701085, Parameters);
|
|
|
|
Response = OPI_Tools.JSONString(Response);
|
|
|
|
|
|
|
|
```
|
2024-07-10 10:59:55 +02:00
|
|
|
|
|
|
|
|
2024-06-23 22:22:01 +02:00
|
|
|
|
|
|
|
```sh title="CLI command example"
|
|
|
|
|
|
|
|
oint vk PauseAdvertising --cabinet %cabinet% --adv %adv% --auth %auth%
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```json title="Result"
|
2024-07-10 10:59:55 +02:00
|
|
|
{
|
2024-06-23 22:22:01 +02:00
|
|
|
"response": [
|
|
|
|
{
|
|
|
|
"id": 1029701085
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|