Skip to content

Activate Offer

GET /offer/activate_offer

Description URL Response Format Request Method Authentication
Activate a paused/expired offer and allow traffic to the landing page url https://domain/api/offer/activate_offer JSON PATCH HTTP headers

Parameters

Name Description Type Required
offerid the id of the offer to be activated integer yes

Example Request

PATCH

https://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);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "PATCH");


$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);
?>