Versions Compared

Key

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

...

Works only as Camel producer.

Below are listed the mandatory options for this operation:

...

from("direct:start").to("dropbox://del?accessToken=XXX&clientIdentifier=XXX&remotePath=/root/folder1/file1.tar.gz").to("mock:result");

Result Message Headers

The following headers are set on message result:

Wiki Markup
{div:class=confluenceTableSmall}
|| Property || Value ||
| {{DELETED_PATH}} | name of the path deleted on dropbox |
{div}

Result Message Body

The following objects are set on message body result:

Wiki Markup
{div:class=confluenceTableSmall}
|| Object type || Description ||
| {{String}} | name of the path deleted on dropbox |
{div}

Get (download) operation

Download files from Dropbox.

Works as Camel producer pr Camel consumer.

Below are listed the options for this operation:

Wiki Markup
{div:class=confluenceTableSmall}
|| Property || Mandatory || Description ||
| {{remotePath}} | {{true}} | Folder or file to download from Dropbox |
{div}

Samples

from("direct:start").to("dropbox://get?" + getAuthParams() + "&remotePath=/XXX").to("file:///XXX?fileName=XXX").to("mock:result");

Result Message Headers

The following headers are set on message result:

Wiki Markup
{div:class=confluenceTableSmall}
|| Property || Value ||
| {{DELETED_PATH}} | name of the path deleted on dropbox |
{div}

Result Message Body

The following objects are set on message body result:

...