DELETE api/matrix/{id}/row?sheet={sheet}&version={version}&useIdentifier={useIdentifier}
Deletes a specific row from a metadata matrix.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The unique identifier of the matrix row to delete. |
integer |
Required |
| sheet |
Optional sheet name where the row resides. |
string |
None. |
| version |
Optional version identifier of the matrix. |
string |
None. |
| useIdentifier |
If true, identifies the row using a unique identifier instead of a numeric ID. |
boolean |
Default value is False |
Body Parameters
A list of values used to identify the row to delete.
Collection of stringRequest Formats
application/json, text/json, application/scim+json
Sample:
[ "sample string 1", "sample string 2" ]
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
On success: HTTP 200 OK indicating the row was deleted successfully. On failure: HTTP 400 Bad Request with a message indicating the error.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/scim+json
Sample:
Sample not available.