1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/docs/en/md/VK/Ad-account-management/Pause-advertising.md
2024-07-10 14:33:00 +03:00

49 lines
864 B
Markdown

---
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 | 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
<br/>
```bsl title="Code example"
Response = OPI_VK.PauseAdvertising(1234567890, 1029701085, Parameters);
Response = OPI_Tools.JSONString(Response);
```
```sh title="CLI command example"
oint vk PauseAdvertising --cabinet %cabinet% --adv %adv% --auth %auth%
```
```json title="Result"
{
"response": [
{
"id": 1029701085
}
]
}
```