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
1C:Enterprise/OneScript code example
Parameters = GetVKParameters();
CampaignNumber = "1030845310";
DailyLimit = 150;
CategoryNumber = 126;
PostID = "5754";
AccountID = "1607951446";
Result = OPI_VK.CreateAd(CampaignNumber
, DailyLimit
, CategoryNumber
, PostID
, AccountID
, Parameters);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint vk CreateAd \
--campaign 1030846102 \
--limit 150 \
--category 126 \
--post 5790 \
--cabinet "1607951446" \
--auth "{'access_token':'***','owner_id':'-218861756','app_id':'51694790','group_id':'218861756'}"
:: JSON data can also be passed as a path to a .json file
oint vk CreateAd ^
--campaign 1030846102 ^
--limit 150 ^
--category 126 ^
--post 5790 ^
--cabinet "1607951446" ^
--auth "{'access_token':'***','owner_id':'-218861756','app_id':'51694790','group_id':'218861756'}"
Result
{
"response": [
{
"id": 0,
"error_code": 603,
"error_desc": "Some ads error occurs: ORD details must be presented."
}
]
}