organizations__removeUser
Parameters:
p1: partition username
p2: organization id
p3: branch id
p4: username to remove from organization/branch
Return Type:
Boolean (true or false)
Description:
Removes user from an organization/branch in specified account.
Example (using Code Kit):// assumes partition username "anthony" exists
// removing username Bob from First Branch (id: 1) within the Sample Organization (id: 1) organization (assumes all exist)
$data = APICommand( “organizations__removeUser", "anthony", “1”, “1”, “Bob” );
$xml = simplexml_load_string( $data );
echo $xml->result;