Difference between revisions of "Offerit API Set Member Details"
From Offerit
(→Server Request/Response) |
(→Server Request/Response) |
||
Line 54: | Line 54: | ||
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" | 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: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: | + | xmlns:tns="urn:offeritapiadmin_wsdl"><SOAP-ENV:Body><tns:set_member_details xmlns:tns="urn:offeritapiadmin_wsdl"> |
− | < | + | <memberid xsi:type="xsd:string">123</orderid> |
− | |||
− | |||
<customer xsi:type="tns:Member"> | <customer xsi:type="tns:Member"> | ||
− | <firstname xsi:type="xsd:string"> | + | <firstname xsi:type="xsd:string">Megan</firstname> |
− | <lastname xsi:type="xsd:string"> | + | <lastname xsi:type="xsd:string">Tester</lastname> |
− | + | </tns:set_member_details></SOAP-ENV:Body></SOAP-ENV:Envelope> | |
− | |||
− | </tns: | ||
</pre> | </pre> | ||
Revision as of 14:32, 15 January 2013
This function is used to update a member in Offerit. To use this function, you must make a SOAP call with the following parameters:
- memberid - the ID of the member to modify
The following are optional parameters:
- firstname - The first name of the member
- lastname - The last name of the member
- email - The email address of the member
- address1 - The address of the member
- address2 - The address of the member
- city - The city of the member
- state - The state of the member
- country - The country of the member
- zip - The zip code of the member
- custom1 - The custom1 field of the member
- custom2 - The custom2 field of the member
- custom3 - The custom3 field of the member
- custom4 - The custom4 field of the member
- custom5 - The custom5 field of the member
- password - The new password of the member
NuSOAP Example
This example continues from the main article NuSOAP Example:
$values = Array( 'memberid'=>'34', 'firstname'=>'Megan', 'lastname'=>'Tester' ) ); $result = $client->call('get_member_data', $values, 'offeritapiadmin_wsdl');
Sample Output
on success: 1 on failure: <no output>
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:set_member_details xmlns:tns="urn:offeritapiadmin_wsdl"> <memberid xsi:type="xsd:string">123</orderid> <customer xsi:type="tns:Member"> <firstname xsi:type="xsd:string">Megan</firstname> <lastname xsi:type="xsd:string">Tester</lastname> </tns:set_member_details></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:set_member_detailsResponse xmlns:ns1="urn:offeritapiadmin_wsdl"> <return xsi:type="xsd:boolean">true</return> </ns1:set_member_detailsResponse></SOAP-ENV:Body> </SOAP-ENV:Envelope>