GET adtools/categories
Description
- This resource allows you to get a list of available adtool categories.
Resource URL
- http://domain/api/adtools/categories
- Replace domain with the nats domain
Request Method
Response Format
Authentication
Parameters
Example Request
GET
http://domain/api/adtools/categories
[
{
"adtool_category_id": "1",
"name": "Banners",
"description": "Banner Ad Tools"
},
{
"adtool_category_id": "2",
"name": "Galleries",
"description": "Hosted Galleries"
},
{
"adtool_category_id": "3",
"name": "Content",
"description": "Content"
},
{
"adtool_category_id": "5",
"name": "Interactives",
"description": "Interactives"
},
{
"adtool_category_id": "6",
"name": "Page Ads",
"description": "Page Advertisements"
},
{
"adtool_category_id": "101",
"name": "Gallery Builder",
"description": "Gallery Builder"
},
{
"adtool_category_id": "1000",
"name": "custom stuff",
"description": "custom toolz"
}
]
Example Code
PHP
<?php
$url = 'http://domain/api/adtools/categories';
$curl = curl_init();
$headers = array(
'api-key: 44b5498dbcb481a0d00b404c0169af62',
'api-username: tmm1phrvezsbu'
);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_URL, $url);
$resp = curl_exec($curl);
//dumps an associative array representation of the json
var_dump(json_decode($resp, true));
// Close request to clear up some resources
curl_close($curl);
?>
Python
- This example requires pip and the request library which can be installed via pip by: 'pip install requests'
import requests
url = 'http://domain/api/adtools/categories'
headers = {
'api-key': '44b5498dbcb481a0d00b404c0169af62',
'api-username': 'tmm1phrvezsbu'
}
res = requests.get(url, headers=headers)
print res.json()
node.js
- This example requires npm and the request module which can be installed via npm by: 'npm install request'
var request = require('request');
var options = {
url: 'http://domain/api/adtools/categories',
method: 'GET',
json: true,
headers: {
'api-key': '44b5498dbcb481a0d00b404c0169af62',
'api-username': 'tmm1phrvezsbu'
}
};
function callback(error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body);
}
else{
console.log(body);
}
}
request(options, callback);
Curl
curl -X GET 'http://domain/api/adtools/categories' -H "api-key: 44b5498dbcb481a0d00b404c0169af62" -H "api-username: tmm1phrvezsbu"