POST api/attributetable/{id}
Creates a new row in the specified attribute table using the provided values.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the attribute table where the new row will be inserted. |
integer |
Required |
Body Parameters
A list of values representing the new row. The first value is treated as the key.
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 descriptive error message.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/scim+json
Sample:
Sample not available.