Difference between revisions of "Offerit REST API Get Creatives Fields"
From Offerit
OfferitRob (talk | contribs) (Created page with "{{Offerit Manual | show_api_admin_section = true }} == '''GET /creative/get_creative_fields''' == '''Description''' *Use this API end point to get the list of fields for a...") |
OfferitRob (talk | contribs) |
||
| Line 9: | Line 9: | ||
'''Resource URL''' | '''Resource URL''' | ||
*<nowiki>http://domain/api/creative/get_creative_fields</nowiki> | *<nowiki>http://domain/api/creative/get_creative_fields</nowiki> | ||
| − | *Replace domain with your | + | *Replace domain with your Offerit domain |
'''Response Format''' | '''Response Format''' | ||
Revision as of 13:49, 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);
?>