OVERVIEW
This SOAP Webservice helps to provide the full information about the users which users can manage on the User profile settings screen.
Web service URL: https://xxxxx.orcanos.com/xxxxxx/qpackserv/qpackserv.asmx?op=QW_Get_UserProfile
Method: GET
Input:
Parameter | Type | Value |
User_Name | String | Enter the Username |
User_Password | String | Enter the user password |
Output:
When invoke the Web Service, it will return results in the below format if details are correct:
<profile>XML Data</profile>
All the details of the user which shows on user profile screen, displays here
For Example:
<profile> <Email>[email protected]</Email> <show_tutorial>0</show_tutorial> <grid_line>1</grid_line> <profile_image> </profile_image> <editor_theme>icy_orange</editor_theme> <grid_horizontal_line>1</grid_horizontal_line> <grid_vertical_line>1</grid_vertical_line> <rtl_ind>0</rtl_ind> <disable_speller>1</disable_speller> <disable_tooltip>1</disable_tooltip> <date_format>dd/MM/yy</date_format> <full_text_search>0</full_text_search> <density>3</density> <is_display_full_text_search>1</is_display_full_text_search> </profile>
And, if details are wrong then, it will give an error message:
<Error>
<ErroStatus></ErrorStatus>
</Error>
For Example:
<Error> <ErrorStatus>1</ErrorStatus> <ErrorInfo>Email / User Name or password are incorrect</ErrorInfo> <ErrorTrace>Initialize_new</ErrorTrace> </Error>