You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-12-01 22:29:52 +02:00
91 lines
2.5 KiB
Plaintext
Vendored
91 lines
2.5 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 2
|
|
description: Create advertising post and other functions to work with VK in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
|
|
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, VK]
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# Create advertising post
|
|
Creates an advertising post based on a post
|
|
|
|
|
|
|
|
`Function CreateAd(Val CampaignNumber, Val DailyLimit, Val CategoryNumber, Val PostID, Val AccountID, Val Parameters = "") Export`
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|-|-|-|-|-|
|
|
| CampaignNumber | --campaign | String, Number | ✔ | Advertising campaign ID |
|
|
| DailyLimit | --limit | String, Number | ✔ | Daily limit in rubles |
|
|
| CategoryNumber | --category | String, Number | ✔ | Advertising category number |
|
|
| PostID | --post | String, Number | ✔ | ID of the post used for advertising |
|
|
| AccountID | --cabinet | String, Number | ✔ | Advertising account ID |
|
|
| Parameters | --auth | Structure Of String | ✖ | Authorization JSON or path to .json |
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from VK
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
Parameters = GetVKParameters();
|
|
|
|
CampaignNumber = "1031565397";
|
|
DailyLimit = 150;
|
|
CategoryNumber = 126;
|
|
PostID = "9593";
|
|
AccountID = "1607951446";
|
|
|
|
Result = OPI_VK.CreateAd(CampaignNumber
|
|
, DailyLimit
|
|
, CategoryNumber
|
|
, PostID
|
|
, AccountID
|
|
, Parameters);
|
|
```
|
|
|
|
|
|
<Tabs>
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
```bash
|
|
oint vk CreateAd \
|
|
--campaign "1031568261" \
|
|
--limit "150" \
|
|
--category "126" \
|
|
--post "9695" \
|
|
--cabinet ""1607951446"" \
|
|
--auth ""/tmp/tihgsj2m.0so.json""
|
|
```
|
|
</TabItem>
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
```batch
|
|
oint vk CreateAd ^
|
|
--campaign "1031568261" ^
|
|
--limit "150" ^
|
|
--category "126" ^
|
|
--post "9695" ^
|
|
--cabinet ""1607951446"" ^
|
|
--auth ""/tmp/tihgsj2m.0so.json""
|
|
```
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
|
|
```json title="Result"
|
|
{
|
|
"response": [
|
|
{
|
|
"id": 0,
|
|
"error_code": 603,
|
|
"error_desc": "Some ads error occurs: ORD details must be presented."
|
|
}
|
|
]
|
|
}
|
|
```
|