Difference between revisions of "NATS4 REST API Bulk Import Adtools"
From TMM Wiki
Jump to navigationJump to searchTMMMikeSopko (talk | contribs) |
Tmm vincent (talk | contribs) m (updated paths and url protocol) |
||
Line 2: | Line 2: | ||
| show_api_admin_section = true | | show_api_admin_section = true | ||
}} | }} | ||
− | == '''POST / | + | == '''POST /adtool/import''' == |
'''Description''' | '''Description''' | ||
*[[NATS4]] now supports an [[NATS4_API|API]] action that allows you to import bulk adtools. This lets you insert your custom adtools into the [[NATS]] tools through an automated process by running a cron that calls the bulk import API for your adtools import. This API sends all the standard information for the bulk importer (the dump, what the separator and fields are, etc.) so NATS can process the imported adtools as normal for the bulk importer. | *[[NATS4]] now supports an [[NATS4_API|API]] action that allows you to import bulk adtools. This lets you insert your custom adtools into the [[NATS]] tools through an automated process by running a cron that calls the bulk import API for your adtools import. This API sends all the standard information for the bulk importer (the dump, what the separator and fields are, etc.) so NATS can process the imported adtools as normal for the bulk importer. | ||
Line 8: | Line 8: | ||
'''Resource URL''' | '''Resource URL''' | ||
− | *<nowiki> | + | *<nowiki>https://domain/api/adtool/import</nowiki> |
*Replace domain with the nats domain | *Replace domain with the nats domain | ||
Line 68: | Line 68: | ||
'''POST''' | '''POST''' | ||
− | <nowiki> | + | <nowiki>https://domain/api/adtool/import</nowiki> |
*Response: | *Response: | ||
Line 82: | Line 82: | ||
$curl = curl_init(); | $curl = curl_init(); | ||
− | $dump = ' | + | $dump = 'https://www.google.com/hatz|hats|morehats'."\n"; |
− | $dump .= ' | + | $dump .= 'https://www.google.com/bags2|bags2|some bags'; |
$fields = Array('url','name','description'); | $fields = Array('url','name','description'); | ||
Line 99: | Line 99: | ||
); | ); | ||
− | $url = ' | + | $url = 'https://domain/api/adtool/import'; |
$headers = array( | $headers = array( |
Latest revision as of 00:18, 25 May 2018
POST /adtool/import
Description
- NATS4 now supports an API action that allows you to import bulk adtools. This lets you insert your custom adtools into the NATS tools through an automated process by running a cron that calls the bulk import API for your adtools import. This API sends all the standard information for the bulk importer (the dump, what the separator and fields are, etc.) so NATS can process the imported adtools as normal for the bulk importer.
Resource URL
- https://domain/api/adtool/import
- Replace domain with the nats domain
- POST
Response Format
- JSON
- HTTP headers
Parameters
Paremeters must be sent with the HTTP request body.
- adtool_type -- the numeric id of the type (for FHGs, it's 2)
- type: integer
- required
- dump -- the actual adtool dump
- type: string
- required
- fields -- an array of the fields that are in the dump
- type: array
- required
- separator -- the string that separates each of the fields in the dump
- type: string
- required
- line_ending -- the string that separates the lines in the dump ('none' or '' mean that a line ending itself is the separator)
- type: string
- required
- type -- the subtype of the adtool (the type field on the adtool)
- type: integer
- required
- enabled_on -- the siteid it should be enabled on or a comma separated list of siteids it should be enabled on. -1 means no sites. 0 means all sites.
- type: integer
- required
- publish_date -- the date you want it published. Can be anything you would put in to the field in the adtools admin the recommended format is YYYY-mm-dd (eg. 2010-01-31)
- type: string
- required
- default_group -- the adtool group that you want this to be added to
- type: integer
- required
- ignore_dupes -- if set, instead of returning an error if a row has a duplicate to a unique field for an existing adtool, we'll instead just ignore the row.
- type: integer
- required
Example Request
POST
https://domain/api/adtool/import
- Response:
"TRUE adtools sent for import"
Example Code
PHP
<?php $curl = curl_init(); $dump = 'https://www.google.com/hatz|hats|morehats'."\n"; $dump .= 'https://www.google.com/bags2|bags2|some bags'; $fields = Array('url','name','description'); $data = array( 'adtool_type_id' => 2, 'dump' => $dump, 'fields' => $fields, 'separator' => '|', 'line_ending' => '', 'type' => 1, 'enabled_on' => 1, 'publish_date' => '2010-01-28', 'default_group' => 1000, 'ignore_dupes' => 1 ); $url = 'https://domain/api/adtool/import'; $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); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data)); $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); ?>