My account : API documentation

API documentation

Account

/campaign_hg/categories_list GET

Returns list of categories.

Parameters:

none

 

 

Return values:

SUCCESS

status=SUCCESS, count=[nr of categories], categories=[array of array of (id,title)]

ERROR

status=ERROR, error=[error message*]

*[NO CATEGORIES]

Code:

cURL:

curl -H "MicroworkersApiKey:YOUR_API_KEY" -X GET https://api.microworkers.com/campaign_hg/categories_list

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_hg/categories_list");
$client->setMethod("GET");
$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('GET', '/campaign_hg/categories_list');
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('GET', '/campaign_hg/categories_list')
pprint(res)

C#:

using System;
using MWAPI;

public class Test
{
  public static void Main (string[] args)
  {
    MW_API MW_API_Client = new MW_API ("YOUR_API_KEY");
    string body = MW_API_Client.getRequest("/campaign_hg/categories_list");
    Console.WriteLine (body);
  }
}

Examples:

Output (Success):

https://api.microworkers.com/campaign_hg/categories_list

{
  "status": "SUCCESS",
  "categories": [
  {
     "id": "75",
     "title": "Blog/Website Owners"
  },
  {
     "id": "15",
     "title": "Bookmark a page (digg, Delicious, Buzz,...)"
  },
  {
     "id": "55",
     "title": "Comment on Other Blogs"
  }
  ],
  "count": 3
}

Output (Error):

https://api.microworkers.com/campaign_hg/categories_list

{
  "status": "ERROR",
  "error": "NO CATEGORIES"
}