تحذير! إذا كان النظام يتطلب باستمرار تفويضًا ويزعجك عن العمل، يرجى التحقق مما إذا كان لديك ملفات تعريف الارتباط مفعلة في متصفحك.
في متصفح إنترنت إكسبلورر، في قائمة "الأدوات"، اختر "خيارات الإنترنت"، ثم انتقل إلى علامة التبويب "الخصوصية" وتحقق مما إذا كان لديك ملفات تعريف الارتباط مفعلة. المستوى الأمني الموصى به - متوسط.
في متصفح أوبرا، في قائمة "الملف" -> "الإعدادات السريعة"، تحقق مما إذا كانت علامة التحقق بجانب "تمكين ملفات تعريف الارتباط" محددة.
إذا كانت لديك أي أسئلة، يرجى الاتصال بـ الدعم الفني.
campaign/add_actions
Parameters:
When you top up an advertising campaign, the systems uses the money on the main balance and calculates it into actions * one_action_cost
Example of the method request:
<?php
$post = array(
'token' => $token,
'id' => 999999,
'actions' => 200
);
if ($curl = curl_init()) {
curl_setopt($curl, CURLOPT_URL, 'https://www.ipweb.ru/api/v2/campaign/add_actions');
curl_setopt($curl, CURLOPT_RETURNTRANSFER,true);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
$out = curl_exec($curl);
echo $out;
curl_close($curl);
}
// Result:
{
"status": "ok",
"error_code": 0
}