Difference between revisions of "NATS For Networks REST API Add Creative"
From TMM Wiki
Jump to navigationJump to search (Created page with "{{NATS for Networks Manual | show_api_admin_section = true }} == '''POST /creative/add_creative''' == '''Description''' *To add a creative to your network, you can make a ca...") |
|||
Line 60: | Line 60: | ||
$data = array( | $data = array( | ||
'creative_type_id' => 1, | 'creative_type_id' => 1, | ||
− | + | 'creative_data' => $creative_data | |
); | ); | ||
Revision as of 14:08, 15 September 2016
POST /creative/add_creative
Description
- To add a creative to your network, you can make a call to this API endpoint
Resource URL
- http://domain/api/creative/add_creative
- Replace domain with your NATS for Networks domain
Response Format
- JSON
- POST
- HTTP headers
Parameters
- creative_type_id
- type: integer
- required
- creative_data
- type: json
- required
- a json encoded array of data for the creative
Example Request
POST http://domain/api/creative/add_creative
- Response:
array(2) { 'result' => string(7) "success" 'message' => int(132) }
- message will include the creative_id on success or a failure reason on error
Example Code
PHP
<?php $url = 'http://domain/api/creative/add_creative'; $creative_fields = Array( 'name' => 'https://upload.wikimedia.org/wikipedia/commons/5/58/Female_lion.jpg', 'type' => '1', ); $creative_data = json_encode($creative_fields); $data = array( 'creative_type_id' => 1, 'creative_data' => $creative_data ); $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, "POST"); 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); ?>