DELETE api/matrix/{id}/row?sheet={sheet}&version={version}&useIdentifier={useIdentifier}

Deletes a specific row from a metadata matrix.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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 string

Request Formats

application/json, text/json, application/scim+json

Sample:
[
  "sample string 1",
  "sample string 2"
]

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'List`1'.

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.

IHttpActionResult

None.

Response Formats

application/json, text/json, application/scim+json

Sample:

Sample not available.