DELETE api/v2/dataservice/deleterowsasync
Deletes multiple rows of data asynchronously. You must call deleterowsasyncgetresult to retrieve results
Request Information
URI Parameters
None.
Body Parameters
Table Name and list of row ids to delete.
SafeDataDeleteRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| RowIds | Collection of string |
None. |
|
| TableName | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"RowIds": [
"sample string 1",
"sample string 2"
],
"TableName": "sample string 1"
}
application/xml, text/xml
Sample:
<SafeDataDeleteRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Paperclip.IOTA.WebApi.Model">
<RowIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</RowIds>
<TableName>sample string 1</TableName>
</SafeDataDeleteRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>
text/plain
Sample:
sample string 1