Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Method parameters

Returns all the lists that can be viewed by a specific user

  • string GetListsUser(string accessKey, int idUser)
  • 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> 
  • No labels