Difference between revisions of "NATS4 API Set Affiliate Admin Settings"
From TMM Wiki
Jump to navigationJump to searchTMMStephenY2 (talk | contribs) |
|||
Line 2: | Line 2: | ||
| show_api_admin_section = true | | show_api_admin_section = true | ||
}} | }} | ||
− | To set an affiliates Admin Settings you must make a SOAP call with the following parameters: | + | |
+ | To set an affiliates Admin Settings through the [[NATS4 API]] you must make a SOAP call with the following parameters: | ||
+ | |||
<pre> | <pre> | ||
+ | |||
<?xml version="1.0" encoding="ISO-8859-1"?> | <?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: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"> | ||
Line 30: | Line 33: | ||
</pre> | </pre> | ||
− | NOTE: The values for the fields are 0 for off or 1 for on. | + | '''NOTE:''' The values for the fields are 0 for off or 1 for on. |
You will get a response similar to: | You will get a response similar to: | ||
Line 47: | Line 50: | ||
</SOAP-ENV:Envelope> | </SOAP-ENV:Envelope> | ||
</pre> | </pre> | ||
− | The response | + | |
− | If the modification was successful then result will be 1 | + | The response will contain one parameter named result. If the modification was successful then the result will be 1; if it was not successful then the result will be 0. |
Revision as of 12:28, 29 June 2010
To set an affiliates Admin Settings through the NATS4 API 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_admin_settings xmlns:tns="urn:natsapiadmin_wsdl"> <loginid xsi:type="xsd:int">6</loginid> <select1 xsi:type="xsd:int">0</select1> <select2 xsi:nil="true" xsi:type="xsd:int"/> <select3 xsi:nil="true" xsi:type="xsd:int"/> <select4 xsi:nil="true" xsi:type="xsd:int"/> <select5 xsi:nil="true" xsi:type="xsd:int"/> <flag1 xsi:nil="true" xsi:type="xsd:int"/> <flag2 xsi:type="xsd:int">1</flag2> <flag3 xsi:nil="true" xsi:type="xsd:int"/> <flag4 xsi:nil="true" xsi:type="xsd:int"/> <flag5 xsi:nil="true" xsi:type="xsd:int"/> <reviewed xsi:nil="true" xsi:type="xsd:int"/> <reason xsi:nil="true" xsi:type="xsd:string"/> <invoicer xsi:nil="true" xsi:type="xsd:int"/> <req_docs xsi:nil="true" xsi:type="xsd:int"/> <w9 xsi:type="xsd:int">1</w9> <trust_level xsi:nil="true" xsi:type="xsd:int"/> </tns:set_aff_admin_settings> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
NOTE: The values for the fields are 0 for off or 1 for on.
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_admin_settingsResponse xmlns:ns1="urn:natsapiadmin_wsdl"> <return xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="tns:Set_aff_admin_setting[1]"> <item xsi:type="tns:Set_aff_admin_setting"> <result xsi:type="xsd:int">1</result> </item> </return> </ns1:set_aff_admin_settingsResponse> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
The response will contain one parameter named result. If the modification was successful then the result will be 1; if it was not successful then the result will be 0.