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

Deletes\Disables a row of data from a matrix sheet

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The unique matrix id

integer

Required

sheet

The sheet name to update, unless specified the first sheet will be updated.

string

None.

version

What version to update, unless specified the default version will be udated.

string

None.

useIdentifier

Whether or not to use the identifier columns to find the row to delete.

boolean

Default value is False

Body Parameters

An array of values that represent the row to be deleted, the number of values must match the number of columns in the sheet unless useIdentifier is set to true. Then it only needs values for the unique identifier fields.

Collection of string

Request Formats

application/json, text/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

MatrixListDTO

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.