GET /offer/pause_offer
Description
- Offerit supports an API resource to pause an offer and send the traffic to another offer/landing page or expiration url.
Resource URL
- http://domain/api/offer/pause_offer
- Replace domain with the Offerit domain
Request Method
Response Format
Authentication
Parameters
- offerid: the id of the offer to be paused
- date_expire: date or unix timestamp to set as the expiration date. Leaving this blank will make the expiration immediate
- expiration_landing_page_id: the id of the landing page you want the traffic redirected to
- expire_url: the expiration url you want traffic redirected to (expiration_landing_page_id takes precedence over this if both are sent)
Example Code
PHP
<?php
$curl = curl_init();
$data = array(
'offerid' => 4,
'date_expire' => '2017/03/20',
'expiration_landing_page_id' => 17
);
$data_string = http_build_query($data);
$url = 'http://domain/api/offer/pause_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
var_dump(json_decode($resp, true));
// Close request to clear up some resources
curl_close($curl);
?>