My account : API documentation

API documentation

Account

/campaign_b/set_speed/<campaign_id> PUT

Changes campaign speed (1-1000).

Parameters:

<campaign_id>

Campaign ID

Example values: e7162dd17b83

PUT data
speed

New Speed value (1-1000)

Return values:

SUCCESS

status=SUCCESS, campaign_id=[campaign id], speed_previous=[x], speed_new=[y]

ERROR

status=ERROR, campaign_id=[campaign id], error=[error message*]

*[NO SUCH CAMPAIGN|INCORRECT SPEED VALUE]

Code:

cURL:

curl -H "MicroworkersApiKey:YOUR_API_KEY" -X PUT https://api.microworkers.com/campaign_b/set_speed/<campaign_id> -d "speed=<speed>"

PHP:

<?php

include "includes/RESTClient.php";
define("cAPI_KEY", "YOUR_API_KEY");
define("cAPI_URL", "https://api.microworkers.com");
$client = new RESTClient();
$client->setApiKey(cAPI_KEY);
$client->setUrl(cAPI_URL . "/campaign_b/set_speed/e7162dd17b83");
$client->setMethod("PUT");
$client->setData(
  array(
    "speed"=>555
  )
);
$client->execute();
$response = $client->getLastResponse();
$client->resetClient();
echo $response;

?>

Perl:

use MW_API;
use Data::Dumper qw(Dumper);
my $mw_api = MW_API->new('api_key' => 'YOUR_API_KEY');
my $res = $mw_api->do_request('PUT', '/campaign_b/set_speed/e7162dd17b83', {
  'speed' => 555
});
print Dumper($res);

Python:

from pprint import pprint
from MW_API import MW_API
mw_api = MW_API('YOUR_API_KEY')
res = mw_api.do_request('PUT', '/campaign_b/set_speed/e7162dd17b83', {'speed': 555 })
pprint(res)

C#:

using System;
using MWAPI;
using System.Collections.Specialized;

public class Test
{
  public static void Main (string[] args)
  {
    MW_API MW_API_Client = new MW_API ("YOUR_API_KEY");
    NameValueCollection postData = new NameValueCollection();
    postData.Add("speed", "555");
    string body = MW_API_Client.putRequest("/campaign_b/set_speed/e7162dd17b83", postData);
    Console.WriteLine (body);
  }
}

Examples:

Output (Success):

{
  "status": "SUCCESS",
  "campaign_id": "e7162dd17b83",
  "speed_previous": "555",
  "speed_new": 300
}

Output (Error):

{
  "status": "ERROR",
  "campaign_id": "e7162dd17b83",
  "error": "INCORRECT SPEED VALUE"
}