Difference between revisions of "NATS For Networks REST API Delete Creative"
From TMM Wiki
Jump to navigationJump to search (Created page with "{{NATS for Networks Manual | show_api_admin_section = true }} == '''PATCH /creative/delete_creative''' == '''Description''' *To mark a creative as deleted in your network, yo...") |
|||
Line 1: | Line 1: | ||
{{NATS for Networks Manual | {{NATS for Networks Manual | ||
− | | | + | | show_rest_api_section = true |
}} | }} | ||
== '''PATCH /creative/delete_creative''' == | == '''PATCH /creative/delete_creative''' == |
Revision as of 16:16, 22 March 2017
PATCH /creative/delete_creative
Description
- To mark a creative as deleted in your network, you can use this API endpoint
Resource URL
- http://domain/api/creative/delete_creative
- Replace domain with your NATS for Networks domain
Response Format
- JSON
- PATCH
- HTTP headers
Parameters
- creative_id
- type: integer
- required
Example Request
PATCH http://domain/api/creative/delete_creative
- Response:
array(2) { 'result' => string(7) "success" 'message' => string(16) "creative deleted" }
Example Code
PHP
<?php $url = 'http://domain/api/creative/delete_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); ?>