Movedigital.folders.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.folders.getListUser
  • userid (required) - The userid of the MoveDigital account.
  • sessionid (required) - The sessionid for the current session.
  • session (required) - The current session value for this sessionid.

Example Responses

  • Success
<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="ok">
	<method>movedigital.folders.getListUser</method>
	<format>rest</format>
	<folders>
		<folder folderid="48" foldername="foo-bar" folderstatus="active" foldervisibility="public" 
			folderinfourl="http://download.movedigital.com/foo/48"  foldertags="a tag, another" licensetype="licenses_cc" 
			licenseid="2" licensename="Creative Commons" licensesubname="Attribution-NonCommercial-NoDerivs 2.0" 
			licenseurl="http://creativecommons.org/licenses/by-nc-nd/2.0/"
			foldertitle="My folder title." folderdescription="My folder description." categoryname="music" />
		<folder folderid="372" foldername="foo-baz" folderstatus="active" foldervisibility="public" 
			folderinfourl="http://download.movedigital.com/foo/372" foldertags="a tag, another" licensetype="licenses_cc" 
			licenseid="2" licensename="Creative Commons" licensesubname="Attribution-NonCommercial-NoDerivs 2.0" 
			licenseurl="http://creativecommons.org/licenses/by-nc-nd/2.0/"
			foldertitle="My baz title." folderdescription="My folder description 2." categoryname="video" />
	</folders>
	<messages>
	</messages>
</rsp>
  • Error
<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="fail">
	<method>movedigital.folders.getListUser</method>
	<errors>
		<error code="99" msg="You are not signed in." />
	</errors>
</rsp>

Error Codes

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

Live REST Demo

Navigation