Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

Code Block
languagehtml/xml
linenumberstrue
<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>