Paid | 30901 |
Registrations | 410 |
Actions in campaigns | 240080 |
Letters readed | 1030 |
New campaigns | 1243 |
Likes | 30264 |
Subscriptions | 79762 |
Reposts | 3946 |
Links | 1 |
Friends | 3554 |
14:14 | 0.58 | ![]() |
14:14 | 0.15 | ![]() |
14:13 | 87.70 | |
14:13 | 13.86 | |
13:44 | 35.59 | ![]() |
Congratulations to the 2276518 th user P1126999*** on the successful registration of an account on the project 18.03.2025 14:13.
campaign/delete
Parameters:
Example of the method request:
<?php
$post = array(
'token' => $token,
'id' => 999999
);
if ($curl = curl_init()) {
curl_setopt($curl, CURLOPT_URL, 'https://www.ipweb.ru/api/v2/campaign/delete');
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:
{
"error": "Access denied",
"error_code": 7
}
====================================================================================
<?php
$post = array(
'token' => $token,
'id' => 999998
);
if ($curl = curl_init()) {
curl_setopt($curl, CURLOPT_URL, 'https://www.ipweb.ru/api/v2/campaign/delete');
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
}
====================================================================================
<?php
$post = array(
'token' => $token,
'id' => 999998,
'forced_pay' => 1
);
if ($curl = curl_init()) {
curl_setopt($curl, CURLOPT_URL, 'https://www.ipweb.ru/api/v2/campaign/delete');
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
}