# DeleteTestDataQueueItems

> Delete specified test data queue items.

Delete specified test data queue items.

## Definition

**Namespace:** UiPath.Testing.API

**Assembly:** UiPath.Testing.Activities.Api (in UiPath.Testing.Activities.Api.dll)

## Overloads

|  |  |
| --- | --- |
| `DeleteTestDataQueueItems(List<TestDataQueueItem>)` | Delete specified test data queue items. |
| `DeleteTestDataQueueItems(List<TestDataQueueItem>, String)` | Delete specified test data queue items, from a certain Orchestrator folder. |
| `DeleteTestDataQueueItems(List<TestDataQueueItem>, String, In32)` | Delete specified test data queue items, from a certain Orchestrator folder, and with `TimeoutMS` configured. |

## `DeleteTestDataQueueItems(List<TestDataQueueItem>)`

Delete specified test data queue items.

```
void DeleteTestDataQueueItems(
    List<TestDataQueueItem> testDataQueueItems
)
```

`testDataQueueItems` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)&lt;TestDataQueueItem&gt; : List the queue items that you want to delete.

## `DeleteTestDataQueueItems(List<TestDataQueueItem>, String)`

Delete specified test data queue items, from a certain Orchestrator folder.

```
void DeleteTestDataQueueItems(
    List<TestDataQueueItem> testDataQueueItems,
    string folderPath
)
```

`testDataQueueItems` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1) `<TestDataQueueItem>` : List the queue items that you want to delete.

`folderPath` [String](https://learn.microsoft.com/dotnet/api/system.string) : [The path of the folder](https://docs.uipath.com/orchestrator/docs/about-folders) where the specified test data queue is located, if different from the folder where the process is running. Use `/` as the separator to indicate subfolders. For example `"Testing/Automated Testing"`.

## `DeleteTestDataQueueItems(List<TestDataQueueItem>, String, In32)`

Delete specified test data queue items, from a certain Orchestrator folder, and with `TimeoutMS` configured.

```
void DeleteTestDataQueueItems(
    List<TestDataQueueItem> testDataQueueItems,
    string folderPath,
    int timeoutMs
)
```

`testDataQueueItems` [List](https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1) `<TestDataQueueItem>` : List the queue items that you want to delete.

`folderPath` [String](https://learn.microsoft.com/dotnet/api/system.string) : [The path of the folder](https://docs.uipath.com/orchestrator/docs/about-folders) where the specified test data queue is located, if different from the folder where the process is running. Use `/` as the separator to indicate subfolders. For example `"Testing/Automated Testing"`.

`timeoutMs` [Int32](https://learn.microsoft.com/dotnet/api/system.int32) : Specifies the amount of time (in milliseconds) to wait for the activity to run before an error is thrown. The default value is 30000 milliseconds (30 seconds).
