NATS4 API Set Affiliate Customs
From TMM Wiki
Jump to navigationJump to searchTo 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.