/
user_get_membership_list ( session )

user_get_membership_list ( session )

user_get_membership_list ( session )

Function to retrieve the list of teams where user is assigned

This function not works to delete external HIS cases. If the user to be deleted is the session’s current user, the session token will become invalid (the session will be logged off)

Input

parameters:

session: is the token obtained in the session_init call

Output

parameters:

result: XML with teams

ErrorMsg: any fault in the call, either in the validation of input parameters, errors in the connection to the database or any other error, this parameter returns the error message produced

Request

sample:

user_get_membership_list( “LCAAAAAAAAA”);

Response

sample:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>

<result>

<teams_list>

<team>

<ref>2</ref>

<name>Team 1</name>

</team>

<team>

<ref>4</ref>

<name>Team 2</name>

</team>

</teams_list>

 </result>

<ErrorMsg></ErrorMsg>

Notes: