PUT api/matrix/{id}?sheet={sheet}&version={version}
Overwrite a Matrix version with a full data set, this should not be used to update existing rates or add items to existing rate card. It should primarily be used to load the initial values after creating a new version
Request Information
URI Parameters
Name | Description | Type | Additional 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. |
Body Parameters
An array of rows to be added, Each row must be an array of values for each column in the sheet being updated.
Collection of Collection of stringRequest Formats
application/json, text/json
Sample:
[ [ "sample string 1", "sample string 2" ], [ "sample string 1", "sample string 2" ] ]
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.