Difference between revisions of "NATS For Networks REST API Activate Offer"
From TMM Wiki
Jump to navigationJump to search(One intermediate revision by one other user not shown) | |||
Line 25: | Line 25: | ||
**'''''type: integer''''' | **'''''type: integer''''' | ||
**required | **required | ||
+ | |||
+ | == '''Example Request''' == | ||
+ | |||
+ | '''PATCH''' | ||
+ | |||
+ | <nowiki>http://domain/api/offer/activate_offer</nowiki> | ||
+ | |||
+ | |||
+ | *Response: | ||
+ | <pre> | ||
+ | { | ||
+ | "result": "success", | ||
+ | "message": "Offer activated." | ||
+ | } | ||
+ | </pre> | ||
== '''Example Code''' == | == '''Example Code''' == | ||
Line 49: | Line 64: | ||
$resp = curl_exec($curl); | $resp = curl_exec($curl); | ||
− | //dumps an associative array representation of the json | + | //dumps an associative array representation of the json response |
− | + | $output = json_decode($resp, true); | |
+ | if($output !== NULL) { | ||
+ | //json was valid. Dump the decoded array | ||
+ | print_r($output); | ||
+ | } | ||
+ | else { | ||
+ | //invalid json, just dump the raw response | ||
+ | print_r($resp); | ||
+ | } | ||
// Close request to clear up some resources | // Close request to clear up some resources | ||
curl_close($curl); | curl_close($curl); |
Latest revision as of 16:47, 12 May 2017
GET /offer/activate_offer
Description
- NATS for Networks supports an API resource to activate a paused/expired offer and allow traffic to the landing page url.
Resource URL
- http://domain/api/offer/activate_offer
- Replace domain with the NATS for Networks domain
- PATCH
Response Format
- JSON
- HTTP headers
Parameters
- offerid: the id of the offer to be activated
- type: integer
- required
Example Request
PATCH
http://domain/api/offer/activate_offer
- Response:
{ "result": "success", "message": "Offer activated." }
Example Code
PHP
<?php $curl = curl_init(); $data = array( 'offerid' => 4, ); $data_string = http_build_query($data); $url = 'http://domain/api/offer/activate_offer?'.$data_string; $headers = array( 'api-key: 44b5498dbcb481a0d00b404c0169af62', 'api-username: productsupport' ); 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 response $output = json_decode($resp, true); if($output !== NULL) { //json was valid. Dump the decoded array print_r($output); } else { //invalid json, just dump the raw response print_r($resp); } // Close request to clear up some resources curl_close($curl); ?>