Difference between revisions of "Offerit API Add Affiliate"

From Offerit
Jump to: navigation, search
(Created page with "{{Offerit Manual | show_api_admin_section = true }} This function allows you to get a list of available creative types. To use this function, you must make a SOAP call with the f...")
 
(Blanked the page)
Line 1: Line 1:
{{Offerit Manual
 
| show_api_admin_section = true
 
}}
 
This function allows you to get a list of available creative types. To use this function, you must make a SOAP call with the following parameters:
 
  
<pre>
 
<?xml version="1.0" encoding="ISO-8859-1"?>
 
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
 
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="urn:offeritapiadmin_wsdl">
 
<SOAP-ENV:Body><tns:adtool_types xmlns:tns="urn:offeritapiadmin_wsdl"></tns:adtool_types></SOAP-ENV:Body></SOAP-ENV:Envelope>
 
</pre>
 
 
You will get a response similar to the following; keep in mind that 16 adtool types were available, but they were reduced down to 4 for display purposes.
 
 
<pre>
 
<?xml version="1.0" encoding="ISO-8859-1"?>
 
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
 
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="urn:offeritapiadmin_wsdl">
 
<SOAP-ENV:Body><ns1:adtool_typesResponse xmlns:ns1="urn:offeritapiadmin_wsdl"><return xsi:type="SOAP-ENC:Array"
 
SOAP-ENC:arrayType="tns:Adtool_type[15]">
 
<item xsi:type="tns:Adtool_type">
 
<adtool_type_id xsi:type="xsd:int">1</adtool_type_id>
 
<adtool_category_id xsi:type="xsd:int">1</adtool_category_id>
 
<name xsi:type="xsd:string">Image Banners</name>
 
<description xsi:type="xsd:string">Image Banners</description></item>
 
<item xsi:type="tns:Adtool_type">
 
<adtool_type_id xsi:type="xsd:int">3</adtool_type_id>
 
<adtool_category_id xsi:type="xsd:int">6</adtool_category_id>
 
<name xsi:type="xsd:string">Page Ads</name>
 
<description xsi:type="xsd:string">Half Page / Full Page Ads</description></item>
 
<item xsi:type="tns:Adtool_type">
 
<adtool_type_id xsi:type="xsd:int">5</adtool_type_id>
 
<adtool_category_id xsi:type="xsd:int">3</adtool_category_id>
 
<name xsi:type="xsd:string">Feeds</name>
 
<description xsi:type="xsd:string">Feeds</description></item>
 
<item xsi:type="tns:Adtool_type">
 
<adtool_type_id xsi:type="xsd:int">6</adtool_type_id>
 
<adtool_category_id xsi:type="xsd:int">3</adtool_category_id>
 
<name xsi:type="xsd:string">Mailers</name>
 
<description xsi:type="xsd:string">Mailing Ads</description></item>
 
</return></ns1:adtool_typesResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
 
</pre>
 
 
== NuSOAP Example ==
 
 
This example continues from the [[Offerit_API#Example|main article NuSOAP Example]]):
 
 
<pre>
 
$result = $client->call('adtool_types', Array(), 'offeritapiadmin_wsdl');
 
</pre>
 
 
== Sample Output ==
 
 
14 adtool types were available, but have been reduced down to 4 for display:
 
 
<pre>
 
Array
 
(
 
    [0] => Array
 
        (
 
            [adtool_type_id] => 1
 
            [adtool_category_id] => 1
 
            [name] => Image Banners
 
            [description] => Image Banners
 
        )
 
 
    [1] => Array
 
        (
 
            [adtool_type_id] => 3
 
            [adtool_category_id] => 6
 
            [name] => Page Ads
 
            [description] => Half Page / Full Page Ads
 
        )
 
 
    [2] => Array
 
        (
 
            [adtool_type_id] => 5
 
            [adtool_category_id] => 3
 
            [name] => Feeds
 
            [description] => Feeds
 
        )
 
 
    [3] => Array
 
        (
 
            [adtool_type_id] => 6
 
            [adtool_category_id] => 3
 
            [name] => Mailers
 
            [description] => Mailing Ads
 
        )
 
)
 
 
</pre>
 
 
[[Category:Offerit API Articles]]
 

Revision as of 16:08, 19 October 2011