Difference between revisions of "NATS4 API Set Member Details"
From TMM Wiki
Jump to navigationJump to searchLine 25: | Line 25: | ||
− | If you want to remove a field you can pass in the string REMOVE and the field will be removed. | + | If you want to remove a field you can pass in the string REMOVE and the field will be removed. All additional parameters have this option other then '''password'''. |
− | |||
− | |||
Revision as of 12:07, 3 December 2013
This feature is available as of version 4.0.71.1
set_member_details requires the following parameters:
- memberid The nats memberid of the member being updated.
set_member_details accepts the following additional parameters (requiring at least one of these):
- firstname
- lastname
- password
- address1
- address2
- city
- state
- zip
- country
- custom1
- custom2
- custom3
- custom4
- custom5
If you want to remove a field you can pass in the string REMOVE and the field will be removed. All additional parameters have this option other then password.
NuSOAP Example (continuing from main article NuSOAP Example):
$values = array( 'memberid' => 88, 'password' => 'pantaloons', 'firstname' => 'joe', 'lastname' => 'montana', 'email' => 'joe@joe.com', 'address1' => '301 football way', 'address2' => 'PO Box 123', 'zip' => '12345', 'city' => 'Winslow', 'state' => 'AZ', 'country' => 'USA', 'custom1' => 'sometimes when we touch', 'custom2' => "the honesty's too much", 'custom3' => 'and I have to close my eyes', 'custom4' => 'and hide', ); $result = $client->call('set_member_details', $values, 'natsapiadmin_wsdl'); var_dump($result);
Output:
bool(true)