ATTENTION! If the system consistently requires authorization and this disturbing you from working please check if you have cookies enabled in your browser.
In the Microsoft Internet Explorer In the "Tools" menu, select "Internet Options", then go to on the "Privacy" tab and check if you have cookies enabled. Recommended security level - medium.
In the Opera browser, on the File menu -> "Quick Settings", check whether the checkmark next to "Enable cookies" is checked.
If you have any questions, please contact the support.
campaign/edit
Parameters:
Example of the method request:
$token, 'id' => 999999, 'visits' => 200, // change the number of executions 'period' => 'week', // per week 'keyword' => 'keyword', // change keyword 'position' => 32 // change the position in the search results ); if( $curl = curl_init() ) { curl_setopt($curl, CURLOPT_URL, 'https://www.ipweb.ru/api/v2/campaign/edit'); 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 }