The Delete
action deletes items from a repository.
CAUTION: This action irreversibly deletes items from the data repository.
Type: asynchronous
Parameter | Description | Required |
---|---|---|
ConnectorGroup
|
The name of the connector group to send the request to. This must match the name you specified when you configured the ConnectorGroupRouter processor in your dataflow. |
Yes |
Documents
|
A comma-separated list of identifiers to specify the items to delete. | Yes |
http://host:10000/action=Delete &ConnectorGroup=FileSystem &Documents=...
This is an asynchronous action, so you receive a token in response to the request. The following XML shows an example response to the QueueInfo action.
<autnresponse> <action>QUEUEINFO</action> <response>SUCCESS</response> <responsedata> <actions> <action> <status>Finished</status> <queued_time>2019-Sep-12 17:35:45</queued_time> <time_in_queue>0</time_in_queue> <process_start_time>2019-Sep-12 17:35:45</process_start_time> <time_processing>0</time_processing> <process_end_time>2019-Sep-12 17:35:45</process_end_time> <success>identifier</success> <token>...</token> </action> </actions> </responsedata> </autnresponse>
|