Chatwee

ChatweeV2_SsoUser::edit

Calls the /sso-user/edit Chatwee API method. It modifies the user identified by the userId parameter.


<?php

  require_once(dirname( __FILE__ ) . "/ChatweeV2_SDK/Chatwee.php");

  ChatweeV2_Configuration::setApiUrl(YOUR_API_URL);
  ChatweeV2_Configuration::setChatId(YOUR_PERSONAL_CHAT_ID);
  ChatweeV2_Configuration::setClientKey(YOUR_PERSONAL_CLIENT_KEY);

  try {
    ChatweeV2_SsoUser::edit(Array(
      "userId" => "507f191e810c19729de860ea",
      "login" => "Test user",
      "isAdmin" => true,
      "avatar" => "http://mypage.com/avatar.png"
    ));
    echo "The user has been edited";
  } catch(Exception $exception) {
    echo "An error occured: " . $exception->getMessage();
  }
?>
  
Name Description Type Mandatory Remarks
userId ID of the user string yes -
login user login string yes -
isAdmin if user has admin role boolean no -
avatar user avatar string no an absolute URL of the user's avatar image