|
|
(2 intermediate revisions by 2 users not shown) |
Line 4: |
Line 4: |
| This function allows you to edit a sale for a specific affiliate. To use this function, you must make a SOAP call with the following parameters: | | This function allows you to edit a sale for a specific affiliate. To use this function, you must make a SOAP call with the following parameters: |
| | | |
− | * '''orderid''' - Your unique orderid that will be associated with the OfferIt customer record | + | * '''orderid''' - ''(required)'' Your unique orderid that will be associated with the OfferIt customer record |
| * '''customerid''' - The OfferIt Customer id | | * '''customerid''' - The OfferIt Customer id |
| * '''amount''' - The amount of the sale | | * '''amount''' - The amount of the sale |
Line 76: |
Line 76: |
| error message | | error message |
| </pre> | | </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:set_aff_sales_edit xmlns:tns="urn:offeritapiadmin_wsdl">
| |
− | <orderid xsi:type="xsd:string">AAAAAAAAAAAAA</orderid><customerid xsi:type="xsd:int">129</customerid>
| |
− | <amount xsi:type="xsd:string">10</amount><offeritcode xsi:type="xsd:string">2.1.1.1.0.0.0.0.0.0.0</offeritcode>
| |
− | <customer xsi:type="tns:Member"><firstname xsi:type="xsd:string">Ben</firstname><lastname xsi:type="xsd:string">Warren</lastname>
| |
− | <address1 xsi:type="xsd:string">1114 W. Campus Drive</address1><zip xsi:type="xsd:string">07751</zip><city xsi:type="xsd:string">Morganville</city>
| |
− | <country xsi:type="xsd:string">US</country><state xsi:type="xsd:string">NJ</state></customer>
| |
− | <reason xsi:type="xsd:string">Mistakenly credited sale to the wrong offer</reason><currency xsi:nil="true" xsi:type="xsd:string"/>
| |
− | <time xsi:nil="true" xsi:type="xsd:string"/></tns:set_aff_sales_edit>
| |
− | </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:set_aff_sales_editResponse xmlns:ns1="urn:offeritapiadmin_wsdl">
| |
− | <message xsi:type="xsd:string">Edit Success</message><customerid xsi:type="xsd:int">129</customerid><orderid xsi:type="xsd:string">AAAAAAAAAAAAA</orderid>
| |
− | </ns1:set_aff_sales_editResponse>
| |
− | </SOAP-ENV:Body>
| |
− | </SOAP-ENV:Envelope>
| |
− | </pre>
| |
− |
| |
− | [[Category:Offerit API Articles]]
| |