Movedigital.settings.transferBandwidth

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.settings.transferBandwidth
  • userid (required) - The userid of the MoveDigital account.
  • sessionid (required) - The sessionid for the current session.
  • session (required) - The session value for the associated sessionid.
  • recipient (required) - The username of the recipient of the bandwidth transfer.
  • quantity (required) - The amount of bandwidth (in gigabytes) that you want to transfer to the other user.

Example Responses

  • Success
<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="ok">
	<method>movedigital.settings.transferBandwidth</method>
	<format>rest</format>
	<messages>
		<message msg="Successfully transferred bandwidth." />
	</messages>
</rsp>
  • Error
<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="fail">
	<method>movedigital.settings.transferBandwidth</method>
	<errors>
		<error code="98" msg="This functionality is not enabled on your account." />
	</errors>
</rsp>

Error Codes

  • 98 - Insufficient permissions.
  • 99 - User not signed in.
  • 103 - Recipient does not exist.
  • 106 - Required data is missing.
  • 108 - Internal error.
  • 109 - Service is currently unavailable.

Live REST Demo

Navigation