POST api/attributetable/{id}

Creates a new row in the specified attribute table using the provided values.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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 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 with a confirmation message. On failure: HTTP 400 Bad Request with a descriptive error message.

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.