Removes the task redirection configured for the specified user. After this call, incoming tasks assigned to that user will no longer be automatically forwarded to another user.
If the user has no active task redirection, the call succeeds silently with no error.
/srv.asmx/RemoveUserTaskRedirection
/srv.asmx/RemoveUserTaskRedirection?authenticationTicket=...&userName=.../srv.asmx/RemoveUserTaskRedirection (form data)http://tempuri.org/RemoveUserTaskRedirection| Parameter | Type | Required | Description |
|---|---|---|---|
authenticationTicket |
string | Yes | Authentication ticket obtained from AuthenticateUser. |
userName |
string | Yes | Login name of the user whose task redirection should be removed. |
<root success="true" />
<root success="false" error="Access Denied" />
The calling user must be one of:
Anonymous access is not permitted.
GET /srv.asmx/RemoveUserTaskRedirection
?authenticationTicket=3f7a1b2c-4d5e-6f7a-8b9c-0d1e2f3a4b5c
&userName=john.smith
HTTP/1.1
Host: yourserver
POST /srv.asmx/RemoveUserTaskRedirection HTTP/1.1
Host: yourserver
Content-Type: application/x-www-form-urlencoded
authenticationTicket=3f7a1b2c-4d5e-6f7a-8b9c-0d1e2f3a4b5c&userName=john.smith
success="true" (idempotent delete).| Error | Description |
|---|---|
[900] |
Authentication failed -“ invalid credentials. |
[901] |
Session expired or invalid authentication ticket. |
| User not found | The specified userName does not exist. |
| Access Denied | Calling user is not the target user, a User Manager, or a Library Manager. |