1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/VK/Ad-account-management/Pause-advertising.md

52 lines
874 B
Markdown
Raw Normal View History

---
sidebar_position: 3
---
# Pause advertising post
Pauses the display of the advertising post
<br/>
2024-07-10 12:58:29 +02:00
`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
2024-07-10 13:05:58 +02:00
<br/>
2024-07-10 12:58:29 +02:00
```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
}
]
}
```