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
| Name | Description | Type | Additional 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 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 updated successfully. On failure: HTTP 400 Bad Request or HTTP 204 No Content with a message indicating the issue.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/scim+json
Sample:
Sample not available.