Difference between revisions of "NATS4 REST API Adtool Categories"
From TMM Wiki
Jump to navigationJump to searchLine 80: | Line 80: | ||
$headers = array( | $headers = array( | ||
− | ' | + | 'api-key: 44b5498dbcb481a0d00b404c0169af62', |
− | ' | + | 'api-username: tmm1phrvezsbu' |
); | ); | ||
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); | curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); | ||
Line 102: | Line 102: | ||
url = 'http://domain/api/adtools/categories' | url = 'http://domain/api/adtools/categories' | ||
headers = { | headers = { | ||
− | ' | + | 'api-key': '44b5498dbcb481a0d00b404c0169af62', |
− | ' | + | 'api-username': 'tmm1phrvezsbu' |
} | } | ||
Line 120: | Line 120: | ||
json: true, | json: true, | ||
headers: { | headers: { | ||
− | ' | + | 'api-key': '44b5498dbcb481a0d00b404c0169af62', |
− | ' | + | 'api-username': 'tmm1phrvezsbu' |
} | } | ||
}; | }; | ||
Line 140: | Line 140: | ||
'''Curl''' | '''Curl''' | ||
<pre> | <pre> | ||
− | curl -X GET 'http://domain/api/adtools/categories' -H " | + | curl -X GET 'http://domain/api/adtools/categories' -H "api-key: 44b5498dbcb481a0d00b404c0169af62" -H "api-username: tmm1phrvezsbu" |
</pre> | </pre> | ||
[[Category:NATS4 API Articles]] | [[Category:NATS4 API Articles]] |
Latest revision as of 19:27, 26 March 2015
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
- GET
Response Format
- JSON
- HTTP headers
Parameters
- None
Example Request
GET
http://domain/api/adtools/categories
- Response:
[ { "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"