Method parameters
Returns all the lists that can be viewed by a specific user
- string GetListsUser(string accessKey, intidUser)
- accessKey: access key obtained using the Login method
- idUser: ID of the user
If error code=0, the message will contain the IDs of the lists the user has access to.
Sample GetListsUser response
<GetListsUserResult> <errorCode>0</errorCode> <errorDescription></errorDescription> <lists> <list> <listID>1</listID> <listName>Lista nr.1</listName> </list> <list> <listID>2</listID> <listName>Lista nr.2</listName> </list> </lists> </GetListsUserResult>