Difference between revisions of "NATS4 API Set Member Details"
From TMM Wiki
Jump to navigationJump to searchLine 29: | Line 29: | ||
*state | *state | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
NuSOAP Example (continuing from [[NATS4_API#Example|main article NuSOAP Example]]): | NuSOAP Example (continuing from [[NATS4_API#Example|main article NuSOAP Example]]): |
Revision as of 14:08, 1 February 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. The following fields have this ability:
- Address2
- state
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)