PUT api/attributetable/{id}?keyVal={keyVal}
Updates a specific row in an attribute table based on its key column value.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the attribute table to update. |
integer |
Required |
| keyVal |
The value of the key column used to identify the target row. |
string |
Required |
Body Parameters
A list of new values for the non-key columns in the row. The count must match the number of updatable columns in the specified table.
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 with a confirmation message. On failure: HTTP 400 Bad Request with a description of the validation error or issue encountered.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/scim+json
Sample:
Sample not available.