Difference between revisions of "Offerit REST API Get Creatives Fields"
From Offerit
OfferitRob (talk | contribs) |
OfferitRob (talk | contribs) |
||
Line 1: | Line 1: | ||
{{Offerit Manual | {{Offerit Manual | ||
− | | | + | | show_REST_api_section = true |
}} | }} | ||
Revision as of 15:27, 22 March 2017
GET /creative/get_creative_fields
Description
- Use this API end point to get the list of fields for a creative type.
Resource URL
- http://domain/api/creative/get_creative_fields
- Replace domain with your Offerit domain
Response Format
- JSON
- GET
- HTTP headers
Parameters
- creative_type_id
- type: integer
- required
- this is the id of the creative type
Example Request
GET http://domain/api/creative/get_creative_fields
- Response:
array(2) { 'result' => string(7) "success" 'message' => array(1) { 'image_banners' => array(2) { 'types' => array(2) { ... } 'fields' => array(7) { ... } } } }
- result will be error with the reason in message on failure
Example Code
PHP
<?php $url = 'http://domain/api/creative/get_creative_fields'; $data = Array( 'creative_type_id' => 1, ); $data_string = http_build_query($data); $url .= '?'.$data_string; $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); $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); ?>