PUT api/matrix/row/{type}?sheet={sheet}&version={version}

Updates a row in a metadata matrix identified by its type and optional tags.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
type

The type of the matrix to update. Must match the matrix's declared type.

string

Required

sheet

Optional sheet name where the row resides.

string

None.

version

Optional version identifier of the matrix.

string

None.

Body Parameters

A list of values representing the updated row data.

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 updated successfully. On failure: HTTP 400 Bad Request or HTTP 204 No Content with a message indicating the issue.

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.