Removes a document or folder from the current user’s download queue by path.
/srv.asmx/RemoveFromDownloadQueue
/srv.asmx/RemoveFromDownloadQueue?authenticationTicket=...&itemPath=.../srv.asmx/RemoveFromDownloadQueue (form data)http://tempuri.org/RemoveFromDownloadQueue| Parameter | Type | Required | Description |
|---|---|---|---|
authenticationTicket |
string | Yes | Authentication ticket obtained from AuthenticateUser. |
itemPath |
string | Yes | Full infoRouter path of the document or folder to remove (e.g. /Finance/Reports/Q1Summary.pdf or /Finance/Reports). |
<root success="true" />
<root success="false" error="Error message" />
Any authenticated user may call this API. The item is removed from the queue of the currently authenticated user only.
The itemPath is resolved as a document first. If no document exists at that path, it is resolved as a folder. If neither is found, an error is returned.
POST /srv.asmx/RemoveFromDownloadQueue HTTP/1.1
Content-Type: application/x-www-form-urlencoded
authenticationTicket=3f7a1b2c-4d5e-6f7a-8b9c-0d1e2f3a4b5c
&itemPath=%2FCorporate%2FContracts%2Fagreement.pdf
GET /srv.asmx/RemoveFromDownloadQueue
?authenticationTicket=3f7a1b2c-4d5e-6f7a-8b9c-0d1e2f3a4b5c
&itemPath=%2FCorporate%2FContracts
HTTP/1.1
Host: yourserver
success="true".| Error | Description |
|---|---|
[900] |
Authentication failed — invalid credentials. |
[901] |
Session expired or invalid authentication ticket. |
| Item not found | itemPath does not refer to an existing document or folder. |