PUT api/attribute/row?type={type}

Updates values in an attribute list identified by type name or ID.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
type

The name or ID of the attribute list to update. If a numeric value is provided, it is treated as the list's ID; otherwise, it is treated as the list's name.

string

Required

Body Parameters

A list of rows, where each row is a list of strings representing attribute values and optional labels.

Collection of Collection of string

Request Formats

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

Sample:
[
  [
    "sample string 1",
    "sample string 2"
  ],
  [
    "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 indicating the attribute values were updated successfully. On failure: HTTP 400 Bad Request or HTTP 204 No Content with a message indicating the issue.

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.