Movedigital.torrents.getListUser

From MoveDigital Docs

Table of contents

Arguments

Calls are POSTed to http://www.movedigital.com/services/rest/ and should include the following arguments

  • method (required) - Must be set to: movedigital.torrents.getListUser
  • userid (required) - The userid of the MoveDigital account.
  • sessionid (required) - The sessionid for the current session.
  • session (required) - The current session value for the sessionid.

Example Responses

  • Success
<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="ok">
	<method>movedigital.torrents.getListUser</method>
	<format>rest</format>
	<torrents>
		<torrent torrentid="84" torrenturl="http://download.movedigital.com/foo/t123/foo.torrent" 
			 torrentdownloads="74" torrentfiles="2" folderid="123"
			 torrentseeders="4" torrentleechers="1" />
	</torrents>
	<messages>
	</messages>
</rsp>
  • Error
<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="fail">
	<method>movedigital.torrents.getListUser</method>
	<errors>
		<error code="99" msg="User is not signed in." />
	</errors>
</rsp>

Error Codes

  • 99 - User not signed in.
  • 109 - Service is currently unavailable.

Live REST Demo

Navigation