NATS4 API Set Affiliate Customs

From Tmmwiki

Jump to: navigation, search
NATS 4
API
NATS4 API
Add Affiliate
Admin Get Adtools
Adtool Types
Adtool Categories
Ping
Affiliate Get Campaigns
Get Member Details
Set Affiliate Defaults
Set Affiliate Admin Settings
Set Affiliate Customs
Decode Natscode
Set Affiliate Information
Set Affiliate Settings
Set Member Details
Bulk Import Adtools
Send Email API Function

To set an affiliates custom fields you must make a SOAP call with the following parameters:

<?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:natsapiadmin_wsdl">
	<SOAP-ENV:Body>
		<tns:set_aff_customs xmlns:tns="urn:natsapiadmin_wsdl">
			<loginid xsi:type="xsd:int">6</loginid>
			<custom1 xsi:type="xsd:string">Custom field 1.</custom1>
			<custom2 xsi:type="xsd:string">3</custom2>
			<custom3 xsi:nil="true" xsi:type="xsd:string"/>
			<custom4 xsi:nil="true" xsi:type="xsd:string"/>
			<custom5 xsi:type="xsd:string">This is 5!</custom5>
		</tns:set_aff_customs>
	</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

You will get a response similar to:

<?xml version="1.0" encoding="ISO-8859-1"?>
<SOAP-ENV:Envelope 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:natsapiadmin_wsdl">
	<SOAP-ENV:Body>
		<ns1:set_aff_customsResponse xmlns:ns1="urn:natsapiadmin_wsdl">
			<return xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="tns:Set_aff_custom[1]">
				<item xsi:type="tns:Set_aff_custom">
					<result xsi:type="xsd:int">0</result>
				</item>
			</return>
		</ns1:set_aff_customsResponse>
	</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

The response contains one parameters named result. If the modification was successful then result will be 1. If it was not successful then the result will be 0.

products