Difference between revisions of "Offerit API Record Affiliate Click"
From Offerit
OfferitJames (talk | contribs) |
OfferitJames (talk | contribs) |
||
Line 11: | Line 11: | ||
* '''is_unique''' - (optional) Flag to determine if you want a unique click or not. Defaults to 1 | * '''is_unique''' - (optional) Flag to determine if you want a unique click or not. Defaults to 1 | ||
* '''lang''' - (optional) The language to use, default is EN | * '''lang''' - (optional) The language to use, default is EN | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== NuSOAP Example == | == NuSOAP Example == | ||
− | This example continues from the [[Offerit_API#Example|main article NuSOAP Example]] | + | This example continues from the [[Offerit_API#Example|main article NuSOAP Example]]: |
<pre> | <pre> | ||
Line 49: | Line 25: | ||
'lang' => "EN" | 'lang' => "EN" | ||
); | ); | ||
− | $result = $client->call('record_affiliate_click', | + | $result = $client->call('record_affiliate_click', $values, 'offeritapiadmin_wsdl'); |
</pre> | </pre> | ||
Line 60: | Line 36: | ||
on error: | on error: | ||
ERROR: error message | ERROR: error message | ||
+ | </pre> | ||
+ | |||
+ | ==Server Request/Response== | ||
+ | '''Request:''' | ||
+ | <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:record_affiliate_click xmlns:tns="urn:offeritapiadmin_wsdl"> | ||
+ | <loginid xsi:type="xsd:int">3</loginid> | ||
+ | <payoutid xsi:type="xsd:int">2</payoutid> | ||
+ | <offerid xsi:type="xsd:int">1</offerid> | ||
+ | <landing_pageid xsi:type="xsd:int">1</landing_pageid> | ||
+ | <is_unique xsi:type="xsd:int">1</is_unique> | ||
+ | <lang xsi:type="xsd:string">EN</lang></tns:record_affiliate_click></SOAP-ENV:Body></SOAP-ENV:Envelope> | ||
+ | </pre> | ||
+ | |||
+ | '''Response:''' | ||
+ | <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/"> | ||
+ | <SOAP-ENV:Body><ns1:record_affiliate_clickResponse xmlns:ns1="urn:offeritapiadmin_wsdl"> | ||
+ | <return xsi:type="xsd:string">SUCCESS</return></ns1:record_affiliate_clickResponse></SOAP-ENV:Body></SOAP-ENV:Envelope> | ||
</pre> | </pre> | ||
[[Category:Offerit API Articles]] | [[Category:Offerit API Articles]] |
Revision as of 13:50, 9 December 2011
This function allows you to record a click for a specific affiliate. To use this function, you must make a SOAP call with the following parameters:
- loginid - The affiliate ID to record the click to
- payoutid - The payout ID you want to use
- offerid - The ID of the offer to record
- landing_pageid - (optional) The ID of the landing page to use, set to false to use the default landing page for the offer
- is_unique - (optional) Flag to determine if you want a unique click or not. Defaults to 1
- lang - (optional) The language to use, default is EN
NuSOAP Example
This example continues from the main article NuSOAP Example:
$values = Array( 'loginid' => 2, 'payoutid' => 2, 'offerid' => 1, 'landing_pageid' => 1, 'is_unique' => 1, 'lang' => "EN" ); $result = $client->call('record_affiliate_click', $values, 'offeritapiadmin_wsdl');
Sample Output
on success: SUCCESS on error: ERROR: error message
Server Request/Response
Request:
<?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:record_affiliate_click xmlns:tns="urn:offeritapiadmin_wsdl"> <loginid xsi:type="xsd:int">3</loginid> <payoutid xsi:type="xsd:int">2</payoutid> <offerid xsi:type="xsd:int">1</offerid> <landing_pageid xsi:type="xsd:int">1</landing_pageid> <is_unique xsi:type="xsd:int">1</is_unique> <lang xsi:type="xsd:string">EN</lang></tns:record_affiliate_click></SOAP-ENV:Body></SOAP-ENV:Envelope>
Response:
<?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/"> <SOAP-ENV:Body><ns1:record_affiliate_clickResponse xmlns:ns1="urn:offeritapiadmin_wsdl"> <return xsi:type="xsd:string">SUCCESS</return></ns1:record_affiliate_clickResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>