My account : API documentation

API documentation

Account

/message/types GET

Returns list of message types.

Parameters:

none

 

 

Return values:

SUCCESS

status=SUCCESS, message_types=[array of fields]

Code:

cURL:

curl -H "MicroworkersApiKey:YOUR_API_KEY" -X GET https://api.microworkers.com/message/types

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 . "/message/types");
$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', '/message/types');
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', '/message/types')
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("/message/types");
    Console.WriteLine (body);
  }
}

Examples:

Output (Success):

https://api.microworkers.com/message/types

{
  "status": "SUCCESS",
  "message_types": {
    "employer": {
      "E-CAMPAIGN": "Campaign question",
      "E-MONEY": "Money Deposit",
      "E-ENABLE-API": "Request to enable API",
      "E-OTHER": "Other (Employer)",
      "E-REPORTING": "Reporting a Worker or Task"
    },
    "other": {
      "O-ACCOUNT": "Account",
      "O-GENERAL": "General questions"
    },
    "worker": {
      "W-MONEY": "Withdrawals & PIN",
      "W-OTHER": "Other (Workers)"
    }
  }
}