Difference between revisions of "NATS4 API Set Member Details"
From TMM Wiki
Jump to navigationJump to searchTMMMikeSopko (talk | contribs) |
|||
Line 8: | Line 8: | ||
set_member_details accepts the following additional parameters (requiring at least one of these): | set_member_details accepts the following additional parameters (requiring at least one of these): | ||
+ | * '''trial''' | ||
* '''firstname''' | * '''firstname''' | ||
* '''lastname''' | * '''lastname''' | ||
* '''email''' | * '''email''' | ||
− | |||
* '''address1''' | * '''address1''' | ||
* '''address2''' | * '''address2''' | ||
* '''city''' | * '''city''' | ||
* '''state''' | * '''state''' | ||
+ | * '''country''' | ||
* '''zip''' | * '''zip''' | ||
− | * ''' | + | * '''password''' |
* '''custom1''' | * '''custom1''' | ||
* '''custom2''' | * '''custom2''' | ||
Line 23: | Line 24: | ||
* '''custom4''' | * '''custom4''' | ||
* '''custom5''' | * '''custom5''' | ||
− | |||
* '''no_member_note''' | * '''no_member_note''' | ||
Revision as of 11:38, 1 September 2014
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):
- trial
- firstname
- lastname
- address1
- address2
- city
- state
- country
- zip
- password
- custom1
- custom2
- custom3
- custom4
- custom5
- no_member_note
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)