mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-05-31 23:20:02 +02:00
93 lines
2.5 KiB
Plaintext
Vendored
93 lines
2.5 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 2
|
|
---
|
|
|
|
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 = "1030973368";
|
|
DailyLimit = 150;
|
|
CategoryNumber = 126;
|
|
PostID = "6644";
|
|
AccountID = "1607951446";
|
|
|
|
Result = OPI_VK.CreateAd(CampaignNumber
|
|
, DailyLimit
|
|
, CategoryNumber
|
|
, PostID
|
|
, AccountID
|
|
, Parameters);
|
|
```
|
|
|
|
|
|
<Tabs>
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
```bash
|
|
# JSON data can also be passed as a path to a .json file
|
|
|
|
oint vk CreateAd \
|
|
--campaign 1030969750 \
|
|
--limit 150 \
|
|
--category 126 \
|
|
--post 6572 \
|
|
--cabinet "1607951446" \
|
|
--auth "{'access_token':'***','owner_id':'-218861756','app_id':'51694790','group_id':'218861756'}"
|
|
```
|
|
</TabItem>
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
```batch
|
|
:: JSON data can also be passed as a path to a .json file
|
|
|
|
oint vk CreateAd ^
|
|
--campaign 1030969750 ^
|
|
--limit 150 ^
|
|
--category 126 ^
|
|
--post 6572 ^
|
|
--cabinet "1607951446" ^
|
|
--auth "{'access_token':'***','owner_id':'-218861756','app_id':'51694790','group_id':'218861756'}"
|
|
```
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
|
|
```json title="Result"
|
|
{
|
|
"response": [
|
|
{
|
|
"id": 0,
|
|
"error_code": 603,
|
|
"error_desc": "Some ads error occurs: ORD details must be presented."
|
|
}
|
|
]
|
|
}
|
|
```
|