PATCH /creative/undelete_creative
Description
- Use this API end point to re-enabled a previously deleted creative.
Resource URL
- http://domain/api/creative/undelete_creative
- Replace domain with your Offerit domain
Response Format
Request Method
Authentication
Parameters
- creative_id
- type: integer
- required
- this is the unique id of the creative to be re-enabled
Example Request
PATCH
http://domain/api/creative/undelete_creative
array(2) {
'result' =>
string(7) "success"
'message' =>
string(18) "creative undeleted"
}
- result will be error with the reason in message on failure
Example Code
PHP
<?php
$url = 'http://domain/api/creative/undelete_creative';
$data = array(
'creative_id' => 1,
);
$curl = curl_init();
$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");
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);
?>